Catch exceptions from EDU handling

pull/655/head
Erik Johnston 2016-03-18 15:12:50 +00:00
parent 1660145a08
commit 9adf0e92bc
1 changed files with 6 additions and 1 deletions

View File

@ -166,7 +166,12 @@ class FederationServer(FederationBase):
received_edus_counter.inc()
if edu_type in self.edu_handlers:
yield self.edu_handlers[edu_type](origin, content)
try:
yield self.edu_handlers[edu_type](origin, content)
except SynapseError as e:
logger.info("Failed to handle edu %r: %r", edu_type, e)
except Exception as e:
logger.exception("Failed to handle edu %r", edu_type, e)
else:
logger.warn("Received EDU of type %s with no handler", edu_type)