mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Connection errors in twisted aren't RuntimeErrors
This commit is contained in:
parent
e1515c3e91
commit
e9c85a4d5a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user