diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-02-11 18:03:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-11 18:03:30 +0000 |
commit | 5d27730a73d01bd3ff7eb42a21f2f024493c5b89 (patch) | |
tree | 1417404058dddff402e87c40f57850b8d7dd9937 /synapse/app | |
parent | Merge pull request #4580 from matrix-org/uhoreg/e2e_backup_add_updating (diff) | |
download | synapse-5d27730a73d01bd3ff7eb42a21f2f024493c5b89.tar.xz |
Move ClientTLSOptionsFactory init out of refresh_certificates (#4611)
It's nothing to do with refreshing the certificates. No idea why it was here.
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/_base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 62c633146f..e1fc1afd5b 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -216,9 +216,6 @@ def refresh_certificate(hs): logging.info("Loading certificate from disk...") hs.config.read_certificate_from_disk() hs.tls_server_context_factory = context_factory.ServerContextFactory(hs.config) - hs.tls_client_options_factory = context_factory.ClientTLSOptionsFactory( - hs.config - ) logging.info("Certificate loaded.") if hs._listening_services: |