mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:06:01 -04:00
Use correct var
This commit is contained in:
parent
aaecffba3a
commit
11bfe438a2
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class RetryDestinationLimiter(object):
|
|||
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||
valid_err_code = False
|
||||
if exc_type is not None and issubclass(exc_type, CodeMessageException):
|
||||
valid_err_code = valid_err_code != 429 and 0 <= exc_val.code < 500
|
||||
valid_err_code = exc_val.code != 429 and 0 <= exc_val.code < 500
|
||||
|
||||
if exc_type is None or valid_err_code:
|
||||
# We connected successfully.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue