diff --git a/src/lib.rs b/src/lib.rs index 8372a2e3b..402534340 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -94,7 +94,6 @@ pub static HTTP_CLIENT: Lazy = Lazy::new(|| { pub static INTRA_CLUSTER_CLIENT: Lazy = Lazy::new(|| { ClientBuilder::new() .connect_timeout(Duration::from_secs(3)) // set a timeout of 3s for each connection setup - .timeout(Duration::from_secs(30)) // set a timeout of 30s for each request .pool_idle_timeout(Duration::from_secs(90)) // set a timeout of 90s for each idle connection .pool_max_idle_per_host(32) // max 32 idle connections per host .gzip(true) // gzip compress for all requests