diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-04-21 17:21:02 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-04-21 17:22:37 +0100 |
commit | a3ac837599f62b77f458505f841cee6072c1f921 (patch) | |
tree | 0a93eb93841e6d21b041f370c478f356d5f54a08 /synapse/push/pusherpool.py | |
parent | Merge pull request #743 from matrix-org/markjh/slave_pushers (diff) | |
download | synapse-a3ac837599f62b77f458505f841cee6072c1f921.tar.xz |
Optionally split out the pushers into a separate process
Diffstat (limited to 'synapse/push/pusherpool.py')
-rw-r--r-- | synapse/push/pusherpool.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py index aa095f9d9b..6ef48d63f7 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py @@ -29,6 +29,7 @@ logger = logging.getLogger(__name__) class PusherPool: def __init__(self, _hs): self.hs = _hs + self.start_pushers = _hs.config.start_pushers self.store = self.hs.get_datastore() self.clock = self.hs.get_clock() self.pushers = {} @@ -177,6 +178,9 @@ class PusherPool: self._start_pushers([p]) def _start_pushers(self, pushers): + if not self.start_pushers: + logger.info("Not starting pushers because they are disabled in the config") + return logger.info("Starting %d pushers", len(pushers)) for pusherdict in pushers: try: |