summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-04-22 11:34:08 +0100
committerMark Haines <mjark@negativecurvature.net>2016-04-22 11:34:08 +0100
commit2022ae0fb93e4ce0bc4b031a325abf5938ae7118 (patch)
tree4d4f0b55c76167585127b011320af2dcccc4f9cb /synapse/push/httppusher.py
parentMerge pull request #745 from matrix-org/erikj/search-index (diff)
parentOptionally split out the pushers into a separate process (diff)
downloadsynapse-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.py2
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)