From f8f68e8225027c54e87fa8b72462b4c986632f44 Mon Sep 17 00:00:00 2001 From: Ben Adrian Sarmiento Date: Wed, 10 Jul 2024 21:31:29 +0200 Subject: [PATCH] Set rate limit to 4 secs --- pkg/http/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/http/client.go b/pkg/http/client.go index 06f0d86..0f4db5b 100644 --- a/pkg/http/client.go +++ b/pkg/http/client.go @@ -65,7 +65,7 @@ func NewHTTPClient( client: &http.Client{}, maxRetries: maxRetries, timeoutSecs: timeoutSecs, - rateLimitSleepSecs: 2, + rateLimitSleepSecs: 4, backoff: backoffFunc, dnsCache: cmap.New[string](), hosts: hosts,