Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Don't choke on empty signing key lines
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Sep 7, 2022
1 parent 8d7fcf9 commit 70accba
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion synapse/config/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,18 @@ def read_signing_keys(self, signing_key_path: str, name: str) -> List[SigningKey

signing_keys = self.read_file(signing_key_path, name)
try:
return read_signing_keys(signing_keys.splitlines(True))
loaded_signing_keys = read_signing_keys(
[
signing_key_line
for signing_key_line in signing_keys.splitlines(keepends=False)
if signing_key_line.strip()
]
)

if not loaded_signing_keys:
raise ConfigError(f"No signing keys in file {signing_key_path}")

return loaded_signing_keys
except Exception as e:
raise ConfigError("Error reading %s: %s" % (name, str(e)))

Expand Down

0 comments on commit 70accba

Please sign in to comment.