diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-04-22 11:34:08 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-04-22 11:34:08 +0100 |
commit | 2022ae0fb93e4ce0bc4b031a325abf5938ae7118 (patch) | |
tree | 4d4f0b55c76167585127b011320af2dcccc4f9cb /synapse/push/httppusher.py | |
parent | Merge pull request #745 from matrix-org/erikj/search-index (diff) | |
parent | Optionally split out the pushers into a separate process (diff) | |
download | synapse-2022ae0fb93e4ce0bc4b031a325abf5938ae7118.tar.xz |
Merge pull request #746 from matrix-org/markjh/split_out_pusher
Optionally split out the pushers into a separate process
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 6950a20632..3992804845 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -230,7 +230,7 @@ class HttpPusher(object): "Pushkey %s was rejected: removing", pk ) - yield self.hs.get_pusherpool().remove_pusher( + yield self.hs.remove_pusher( self.app_id, pk, self.user_id ) defer.returnValue(True) |