0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-18 10:38:21 +02:00

Connection errors in twisted aren't RuntimeErrors

This commit is contained in:
Erik Johnston 2015-02-05 13:50:15 +00:00
parent e1515c3e91
commit e9c85a4d5a

View file

@ -270,7 +270,7 @@ class FederationClient(FederationBase):
break
except CodeMessageException:
raise
except RuntimeError as e:
except Exception as e:
logger.warn(
"Failed to make_join via %s: %s",
destination, e.message
@ -319,7 +319,7 @@ class FederationClient(FederationBase):
})
except CodeMessageException:
raise
except RuntimeError as e:
except Exception as e:
logger.warn(
"Failed to send_join via %s: %s",
destination, e.message