summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2016-08-02 09:50:37 +0100
committerGitHub <noreply@github.com>2016-08-02 09:50:37 +0100
commitf14cd95342cb7cb674b5d7efa9177365345bc17f (patch)
treeb6746ee20bc1f3b22472be7c4e7f881255cf1838 /synapse/push/httppusher.py
parentmissing --upgrade (diff)
parentIgnore AlreadyCalled errors on timer cancel (diff)
downloadsynapse-f14cd95342cb7cb674b5d7efa9177365345bc17f.tar.xz
Merge pull request #970 from matrix-org/erikj/clock
Ignore AlreadyCalled errors on timer cancel
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r--synapse/push/httppusher.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py
index 9a7db61220..feedb075e2 100644
--- a/synapse/push/httppusher.py
+++ b/synapse/push/httppusher.py
@@ -16,6 +16,7 @@
 from synapse.push import PusherConfigException
 
 from twisted.internet import defer, reactor
+from twisted.internet.error import AlreadyCalled, AlreadyCancelled
 
 import logging
 import push_rule_evaluator
@@ -109,7 +110,11 @@ class HttpPusher(object):
 
     def on_stop(self):
         if self.timed_call:
-            self.timed_call.cancel()
+            try:
+                self.timed_call.cancel()
+            except (AlreadyCalled, AlreadyCancelled):
+                pass
+            self.timed_call = None
 
     @defer.inlineCallbacks
     def _process(self):