mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Remove explicit < 400 check as apparently this is confusing
This commit is contained in:
parent
4c0ec15bdc
commit
fe08db2713
@ -129,9 +129,7 @@ class RetryDestinationLimiter(object):
|
||||
# APIs may expect to never received e.g. a 404. It's important to
|
||||
# handle 404 as some remote servers will return a 404 when the HS
|
||||
# has been decommissioned.
|
||||
if exc_val.code < 400:
|
||||
valid_err_code = True
|
||||
elif exc_val.code == 404 and self.backoff_on_404:
|
||||
if 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
|
||||
|
Loading…
Reference in New Issue
Block a user