diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-06-06 14:36:13 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-06-06 14:36:13 +0100 |
commit | 7168dee6951cf3390ad657b071ae77a0ec059004 (patch) | |
tree | 961a8de71836688222ecb1ae957d40f08c5a3400 /synapse | |
parent | Remove CI test (diff) | |
download | synapse-7168dee6951cf3390ad657b071ae77a0ec059004.tar.xz |
fix bug?
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/tls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py index 72dd5926f9..94a53d05f9 100644 --- a/synapse/config/tls.py +++ b/synapse/config/tls.py @@ -107,7 +107,7 @@ class TlsConfig(Config): certs = [] for ca_file in custom_ca_list: logger.debug("Reading custom CA certificate file: %s", ca_file) - content = self.read_file(ca_file) + content = self.read_file(ca_file, "federation_custom_ca_list") # Parse the CA certificates try: |