Increase the max delay between retry attempts

Otherwise if you have many workers they can easily take out master with
their connection attempts
pull/4749/head
Erik Johnston 2019-02-26 15:12:29 +00:00
parent 313987187e
commit 25814921f1
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class ReplicationClientFactory(ReconnectingClientFactory):
Accepts a handler that will be called when new data is available or data
is required.
"""
maxDelay = 5 # Try at least once every N seconds
maxDelay = 30 # Try at least once every N seconds
def __init__(self, hs, client_name, handler):
self.client_name = client_name