diff options
author | David Baker <dave@matrix.org> | 2016-05-10 18:27:06 +0200 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-05-10 18:27:06 +0200 |
commit | d46b18a00f0811489299b4835482af2a71dcaf55 (patch) | |
tree | d57b2bc9017184d046cbb29a26a081c3a877c4ba /synapse/crypto | |
parent | unbreak schema (diff) | |
download | synapse-d46b18a00f0811489299b4835482af2a71dcaf55.tar.xz |
Pass through _get_event_txn
Diffstat (limited to 'synapse/crypto')
-rw-r--r-- | synapse/crypto/context_factory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py index aad4752fe7..4fb32d2108 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -43,7 +43,7 @@ class ServerContextFactory(ssl.ContextFactory): context.use_privatekey(config.tls_private_key) context.load_tmp_dh(config.tls_dh_params_path) - context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH") + context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH:HIGH") def getContext(self): return self._context |