Actually mount sse once (#4264)

Mock server was responding with the same result many times.
This commit is contained in:
pakrym-oai
2025-09-25 18:17:51 -07:00
committed by GitHub
parent 8e3a048fec
commit a10403d697

View File

@@ -122,6 +122,7 @@ where
.and(path("/v1/responses"))
.and(matcher)
.respond_with(sse_response(body))
.up_to_n_times(1)
.mount(server)
.await;
}