Skip to content
Snippets Groups Projects
Commit 4c0ec15b authored by Erik Johnston's avatar Erik Johnston
Browse files

Comment

parent 85c59010
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,8 @@ class RetryDestinationLimiter(object):
elif exc_val.code == 404 and self.backoff_on_404:
valid_err_code = False
elif exc_val.code == 429:
# 429 is us being aggresively rate limited, so lets rate limit
# ourselves.
valid_err_code = False
elif exc_val.code < 500:
valid_err_code = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment