Optionally split out the pushers into a separate process

This commit is contained in:
Mark Haines 2016-04-21 17:21:02 +01:00
parent 78741cf025
commit a3ac837599
5 changed files with 217 additions and 1 deletions

View file

@ -193,6 +193,9 @@ class HomeServer(object):
**self.db_config.get("args", {})
)
def remove_pusher(self, app_id, push_key, user_id):
return self.get_pusherpool().remove_pusher(app_id, push_key, user_id)
def _make_dependency_method(depname):
def _get(hs):