summary refs log tree commit diff
path: root/synapse/config/key.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-04-02 18:25:45 +0100
committerErik Johnston <erik@matrix.org>2019-04-02 18:25:45 +0100
commit613b443ff006c464b9d9fe839c912661b51c4940 (patch)
tree9efde7a05c9a1a1f2517ef4789d54e27a322865a /synapse/config/key.py
parentRemove spurious changelog files from hotfixes (diff)
parentMerge pull request #4991 from matrix-org/erikj/stagger_push_startup (diff)
downloadsynapse-613b443ff006c464b9d9fe839c912661b51c4940.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/config/key.py')
-rw-r--r--synapse/config/key.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/key.py b/synapse/config/key.py

index 933928885a..eb10259818 100644 --- a/synapse/config/key.py +++ b/synapse/config/key.py
@@ -42,7 +42,8 @@ class KeyConfig(Config): if "signing_key" in config: self.signing_key = read_signing_keys([config["signing_key"]]) else: - self.signing_key = self.read_signing_key(config["signing_key_path"]) + self.signing_key_path = config["signing_key_path"] + self.signing_key = self.read_signing_key(self.signing_key_path) self.old_signing_keys = self.read_old_signing_keys( config.get("old_signing_keys", {})