mirror of
https://mau.dev/maunium/synapse.git
synced 2025-01-21 02:01:53 +01:00
Merge pull request #844 from matrix-org/markjh/yield_on_sleep
Yield on the sleeps intended to backoff replication
This commit is contained in:
commit
87f60e7053
2 changed files with 2 additions and 2 deletions
|
@ -311,7 +311,7 @@ class PusherServer(HomeServer):
|
||||||
poke_pushers(result)
|
poke_pushers(result)
|
||||||
except:
|
except:
|
||||||
logger.exception("Error replicating from %r", replication_url)
|
logger.exception("Error replicating from %r", replication_url)
|
||||||
sleep(30)
|
yield sleep(30)
|
||||||
|
|
||||||
|
|
||||||
def setup(config_options):
|
def setup(config_options):
|
||||||
|
|
|
@ -443,7 +443,7 @@ class SynchrotronServer(HomeServer):
|
||||||
notify(result)
|
notify(result)
|
||||||
except:
|
except:
|
||||||
logger.exception("Error replicating from %r", replication_url)
|
logger.exception("Error replicating from %r", replication_url)
|
||||||
sleep(5)
|
yield sleep(5)
|
||||||
|
|
||||||
def build_presence_handler(self):
|
def build_presence_handler(self):
|
||||||
return SynchrotronPresence(self)
|
return SynchrotronPresence(self)
|
||||||
|
|
Loading…
Add table
Reference in a new issue