diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-07-08 17:51:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 17:51:56 +0100 |
commit | 67593b17287ae5e412c3d30db64d006d3b55349b (patch) | |
tree | 773814cef2383b03bed077e207dbabe25d843d80 /synapse/http | |
parent | Revert "Update the installation docs on apt-transport-https (#7801)" (diff) | |
download | synapse-67593b17287ae5e412c3d30db64d006d3b55349b.tar.xz |
Add `HomeServer.signing_key` property (#7805)
... instead of duplicating `config.signing_key[0]` everywhere
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/matrixfederationclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py index 58aed5fd96..148eeb19dc 100644 --- a/synapse/http/matrixfederationclient.py +++ b/synapse/http/matrixfederationclient.py @@ -176,7 +176,7 @@ class MatrixFederationHttpClient(object): def __init__(self, hs, tls_client_options_factory): self.hs = hs - self.signing_key = hs.config.signing_key[0] + self.signing_key = hs.signing_key self.server_name = hs.hostname real_reactor = hs.get_reactor() |