Throw exception when not retrying when downloading media

This commit is contained in:
Erik Johnston 2017-06-13 10:23:14 +01:00
parent a837765e8c
commit 48d2949416

View file

@ -184,6 +184,7 @@ class MediaRepository(object):
raise
except NotRetryingDestination:
logger.warn("Not retrying destination %r", server_name)
raise SynapseError(502, "Failed to fetch remote media")
except Exception:
logger.exception("Failed to fetch remote media %s/%s",
server_name, media_id)