diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-12 10:03:19 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-12 10:03:19 +0100 |
commit | 866a5320de439ab2019251aa8f8697c74aeeef8c (patch) | |
tree | 3899f11327a29accd87e92b1149489aacefa2c44 /synapse/rest/client/v1/base.py | |
parent | Merge pull request #997 from Half-Shot/develop (diff) | |
download | synapse-866a5320de439ab2019251aa8f8697c74aeeef8c.tar.xz |
Dont invoke get_handlers fromClientV1RestServlet
hs.get_handlers() can not be invoked from split out processes. Moving the invocations down a level means that we can slowly split out individual servlets.
Diffstat (limited to 'synapse/rest/client/v1/base.py')
-rw-r--r-- | synapse/rest/client/v1/base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/base.py b/synapse/rest/client/v1/base.py index 96b49b01f2..c2a8447860 100644 --- a/synapse/rest/client/v1/base.py +++ b/synapse/rest/client/v1/base.py @@ -57,7 +57,6 @@ class ClientV1RestServlet(RestServlet): hs (synapse.server.HomeServer): """ self.hs = hs - self.handlers = hs.get_handlers() self.builder_factory = hs.get_event_builder_factory() self.auth = hs.get_v1auth() self.txns = HttpTransactionStore() |