fix: remove unused connection pool settings from reqwest client

This commit is contained in:
monosans
2025-08-04 15:07:25 +03:00
parent 31b0b00541
commit 64ba8ce080
-2
View File
@@ -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")?;