Merge pull request #5790 from matrix-org/erikj/groups_request_errors

Handle RequestSendFailed exception correctly in more places.
This commit is contained in:
Erik Johnston 2019-08-01 13:14:08 +01:00 committed by GitHub
commit 0f632f3a57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 32 deletions

View file

@ -978,6 +978,9 @@ class FederationHandler(BaseHandler):
except NotRetryingDestination as e:
logger.info(str(e))
continue
except RequestSendFailed as e:
logger.info("Falied to get backfill from %s because %s", dom, e)
continue
except FederationDeniedError as e:
logger.info(e)
continue