diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-01 18:35:06 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-01 18:35:06 +0100 |
commit | 5575f7a9a617e7d39dfebfe4273563581ef12f38 (patch) | |
tree | a70a7a664dc230043d7acfb69cbbb9c167caa376 | |
parent | again (diff) | |
download | synapse-5575f7a9a617e7d39dfebfe4273563581ef12f38.tar.xz |
again
-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 fbe2bd454d..9667b0c806 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -130,7 +130,7 @@ class ClientTLSOptionsFactory(object): self._config = config self._options_validate = CertificateOptions( # This option implies verify=True - trustRoot=config.federation_custom_ca_list, + trustRoot=self._config.federation_custom_ca_list, ) self._options_novalidate = CertificateOptions(verify=False) |