summary refs log tree commit diff
path: root/synapse/app/pusher.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-06-06 16:20:54 +0100
committerMark Haines <mjark@negativecurvature.net>2016-06-06 16:20:54 +0100
commit87f60e705345ca94f222d7d6b0757a31b7b23f1d (patch)
tree175f9ffe10f3f87d46525461ff25d3762ed5df88 /synapse/app/pusher.py
parent.values() returns list of sets (diff)
parentYield on the sleeps intended to backoff replication (diff)
downloadsynapse-87f60e705345ca94f222d7d6b0757a31b7b23f1d.tar.xz
Merge pull request #844 from matrix-org/markjh/yield_on_sleep
Yield on the sleeps intended to backoff replication
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r--synapse/app/pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py
index f1de1e7ce9..3c3fa38053 100644
--- a/synapse/app/pusher.py
+++ b/synapse/app/pusher.py
@@ -311,7 +311,7 @@ class PusherServer(HomeServer):
                 poke_pushers(result)
             except:
                 logger.exception("Error replicating from %r", replication_url)
-                sleep(30)
+                yield sleep(30)
 
 
 def setup(config_options):