From 4d2c1622d3fabd9947b57492651c30434f40946e Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Tue, 22 Jul 2025 20:29:07 +0200 Subject: [PATCH] Get rid of the timeout --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index ccdd6ac..0b238f7 100644 --- a/main.go +++ b/main.go @@ -62,7 +62,6 @@ func LimitedHttp(rps float64, burst int) *http.Client { baseTransport := &http.Transport{ MaxIdleConns: 100, MaxIdleConnsPerHost: 10, - IdleConnTimeout: 10 * time.Second, } // Initialize rate limiter @@ -77,6 +76,5 @@ func LimitedHttp(rps float64, burst int) *http.Client { // Return configured client return &http.Client{ Transport: transport, - Timeout: 10 * time.Second, } }