summary refs log tree commit diff
path: root/synapse/crypto/context_factory.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-04-23 18:14:38 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2021-04-23 18:14:38 +0100
commit3d08c7e63bfd1c8d40ebf6133d2d181c6f1098a9 (patch)
tree22e0ad4049a830de22c998846f9c75a6ec5841b5 /synapse/crypto/context_factory.py
parentMerge commit 'c73cc2c2a' into anoa/dinsic_release_1_31_0 (diff)
parentplatform specific prerequisites in source install (#9667) (diff)
downloadsynapse-3d08c7e63bfd1c8d40ebf6133d2d181c6f1098a9.tar.xz
Merge commit 'e5801db83' into anoa/dinsic_release_1_31_0
Diffstat (limited to 'synapse/crypto/context_factory.py')
-rw-r--r--synapse/crypto/context_factory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py

index 4ca13011e5..c644b4dfc5 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py
@@ -191,7 +191,7 @@ def _context_info_cb(ssl_connection, where, ret): # ... we further assume that SSLClientConnectionCreator has set the # '_synapse_tls_verifier' attribute to a ConnectionVerifier object. tls_protocol._synapse_tls_verifier.verify_context_info_cb(ssl_connection, where) - except: # noqa: E722, taken from the twisted implementation + except BaseException: # taken from the twisted implementation logger.exception("Error during info_callback") f = Failure() tls_protocol.failVerification(f)