Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Fix federation_custom_ca_list configuration option. #5362

Merged
merged 1 commit into from Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5362.bugfix
@@ -0,0 +1 @@
Fix `federation_custom_ca_list` configuration option.
2 changes: 1 addition & 1 deletion synapse/config/tls.py
Expand Up @@ -107,7 +107,7 @@ def read_config(self, 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:
Expand Down