diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 18:22:20 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 18:22:20 +0100 |
commit | 46daf2d2000ebaaec813c88e73183ca1a5e5e58e (patch) | |
tree | f89a8397320ec4a87aa837cd49c9d4e5483c93d6 /synapse | |
parent | Actually return rows (diff) | |
download | synapse-46daf2d2000ebaaec813c88e73183ca1a5e5e58e.tar.xz |
Start pushers on reactor thread
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/pusherpool.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py index 571d8b2f82..2e58f70ffa 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py @@ -19,6 +19,8 @@ from twisted.internet import defer from httppusher import HttpPusher from synapse.push import PusherConfigException +from synapse.util.async import run_on_reactor + import logging logger = logging.getLogger(__name__) @@ -48,6 +50,7 @@ class PusherPool: @defer.inlineCallbacks def start(self): + yield run_on_reactor() pushers = yield self.store.get_all_pushers() self._start_pushers(pushers) |