diff --git a/internal/http_client.go b/internal/http_client.go index 280aecc4..86faa37b 100644 --- a/internal/http_client.go +++ b/internal/http_client.go @@ -80,6 +80,7 @@ func WithDefaultRetryConfig(hc *http.Client) *HTTPClient { MaxRetries: 4, CheckForRetry: retryNetworkAndHTTPErrors( http.StatusServiceUnavailable, + http.StatusTooManyRequests, ), ExpBackoffFactor: 0.5, MaxDelay: &twoMinutes,