Merge pull request #1650 from matrix-org/erikj/respect_ratelimited

Correctly handle 500's and 429 on federation
pull/1657/head
Erik Johnston 2016-11-24 15:27:19 +00:00 committed by GitHub
commit 9192e593ec
2 changed files with 8 additions and 1 deletions

View File

@ -462,6 +462,13 @@ class TransactionQueue(object):
code = e.code
response = e.response
if e.code == 429 or 500 <= e.code:
logger.info(
"TX [%s] {%s} got %d response",
destination, txn_id, code
)
raise e
logger.info(
"TX [%s] {%s} got %d response",
destination, txn_id, code

View File

@ -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 = 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.