Don't log as exception when failing durig backfill

pull/5790/head
Erik Johnston 2019-07-30 13:19:22 +01:00
parent aecae8f397
commit b4d5ff0af7
1 changed files with 3 additions and 0 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