From 3341c50b6ae676cdc8f7b1c44221aa633f2bde68 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 3 Jun 2024 17:17:08 -0400 Subject: refactor: don't share `reqwest::HttpClient` across tokio runtimes (#24092) This also fixes several issues where we weren't properly creating http clients with the user's settings. --- cli/tools/test/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/tools/test') diff --git a/cli/tools/test/mod.rs b/cli/tools/test/mod.rs index 56b09f1c7..fa69ad950 100644 --- a/cli/tools/test/mod.rs +++ b/cli/tools/test/mod.rs @@ -881,6 +881,7 @@ async fn run_tests_for_worker_inner( // failing. If we don't do this, a connection to a test server we just tore down might be re-used in // the next test. // TODO(mmastrac): this should be some sort of callback that we can implement for any subsystem + #[allow(clippy::disallowed_types)] // allow using reqwest::Client here worker .js_runtime .op_state() -- cgit v1.2.3