Skip to content
Snippets Groups Projects
Commit b4d5ff0a authored by Erik Johnston's avatar Erik Johnston
Browse files

Don't log as exception when failing durig backfill

parent aecae8f3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment