diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-06-06 16:05:28 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-06-06 16:05:28 +0100 |
commit | 5ef84da4f11f1b1cceb0c44d9867bb597ee68e64 (patch) | |
tree | 33a9fe75c45a412d0bff15495ddd911b201335d8 /synapse/app/synchrotron.py | |
parent | Merge pull request #841 from matrix-org/erikj/event_counter (diff) | |
download | synapse-5ef84da4f11f1b1cceb0c44d9867bb597ee68e64.tar.xz |
Yield on the sleeps intended to backoff replication
Diffstat (limited to 'synapse/app/synchrotron.py')
-rw-r--r-- | synapse/app/synchrotron.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py index aa81e1c5da..7273055cc1 100644 --- a/synapse/app/synchrotron.py +++ b/synapse/app/synchrotron.py @@ -443,7 +443,7 @@ class SynchrotronServer(HomeServer): notify(result) except: logger.exception("Error replicating from %r", replication_url) - sleep(5) + yield sleep(5) def build_presence_handler(self): return SynchrotronPresence(self) |