diff options
| -rw-r--r-- | internal/httpclient/client.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/httpclient/client.go b/internal/httpclient/client.go index ed0949c9c..74c931ea9 100644 --- a/internal/httpclient/client.go +++ b/internal/httpclient/client.go @@ -339,7 +339,7 @@ func (c *Client) do(r *Request) (rsp *http.Response, retry bool, err error) {  		// A retryable error.  		return nil, true, err -	} else if rsp.StatusCode > 500 || +	} else if rsp.StatusCode >= 500 ||  		rsp.StatusCode == http.StatusTooManyRequests {  		// Codes over 500 (and 429: too many requests)  | 
