diff --git a/crates/e2e-testing/src/http_asserts.rs b/crates/e2e-testing/src/http_asserts.rs index 68596e9926..314427e156 100644 --- a/crates/e2e-testing/src/http_asserts.rs +++ b/crates/e2e-testing/src/http_asserts.rs @@ -67,7 +67,9 @@ pub async fn create_request(method: Method, url: &str, body: &str) -> Result Client> { let connector = HttpsConnector::new(); - Client::builder().build::<_, hyper::Body>(connector) + Client::builder() + .pool_max_idle_per_host(0) + .build::<_, hyper::Body>(connector) } pub async fn make_request(method: Method, path: &str, body: &str) -> Result> {