Merge pull request #5362 from matrix-org/rav/fix_custom_ca

Fix `federation_custom_ca_list` configuration option.
pull/5369/head
Richard van der Hoff 2019-06-05 22:54:41 +01:00 committed by GitHub
commit a39be79216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/5362.bugfix Normal file
View File

@ -0,0 +1 @@
Fix `federation_custom_ca_list` configuration option.

View File

@ -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: