diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-03 17:17:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 21:17:08 +0000 |
commit | 3341c50b6ae676cdc8f7b1c44221aa633f2bde68 (patch) | |
tree | e051e384d722403ea0a04402679a358ef61002dc /cli/cache | |
parent | 72088f2f52d65b2948155a11e7b56722bf6c10f9 (diff) |
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.
Diffstat (limited to 'cli/cache')
-rw-r--r-- | cli/cache/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index bf68203f0..aaaa427d7 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/mod.rs @@ -286,7 +286,7 @@ impl Loader for FetchCacher { } }) } - .boxed() + .boxed_local() } fn cache_module_info( |