diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-18 10:58:13 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-18 10:58:13 +0000 |
commit | 7e9d59f3b4628981d5e53ac0cc71325ad896287c (patch) | |
tree | 55c05a763a11018d65af7fa57d50e6aceef56f74 /synapse | |
parent | Bump version (diff) | |
download | synapse-7e9d59f3b4628981d5e53ac0cc71325ad896287c.tar.xz |
Don't convert DNSLookupError to a 4xx SynapseError
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/http/matrixfederationclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py index 49a4c7d9d3..fe57363388 100644 --- a/synapse/http/matrixfederationclient.py +++ b/synapse/http/matrixfederationclient.py @@ -144,7 +144,7 @@ class MatrixFederationHttpClient(object): destination, e ) - raise SynapseError(400, "Domain specified not found.") + raise logger.warn( "Sending request failed to %s: %s %s: %s - %s", |