Skip to content
Snippets Groups Projects
Commit f8a45302 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Fix `federation_custom_ca_list` configuration option.

Previously, setting this option would cause an exception at startup.
parent 94f6c674
No related branches found
No related tags found
No related merge requests found
Fix `federation_custom_ca_list` configuration option.
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment