From 64ba8ce0804e1db4f5406947a19940ea44f9d988 Mon Sep 17 00:00:00 2001 From: monosans Date: Mon, 4 Aug 2025 15:07:25 +0300 Subject: [PATCH] fix: remove unused connection pool settings from reqwest client --- src/proxy.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/proxy.rs b/src/proxy.rs index 80fb1f3..9e734ed 100644 --- a/src/proxy.rs +++ b/src/proxy.rs @@ -88,8 +88,6 @@ impl Proxy { .proxy(self.try_into()?) .timeout(config.checking.timeout) .connect_timeout(config.checking.connect_timeout) - .pool_max_idle_per_host(0) - .tcp_keepalive(None) .use_rustls_tls() .build() .wrap_err("failed to create reqwest::Client")?;