Increase the max delay between retry attempts

Otherwise if you have many workers they can easily take out master with
their connection attempts
This commit is contained in:
Erik Johnston 2019-02-26 15:12:29 +00:00
parent 313987187e
commit 25814921f1

View File

@ -39,7 +39,7 @@ class ReplicationClientFactory(ReconnectingClientFactory):
Accepts a handler that will be called when new data is available or data Accepts a handler that will be called when new data is available or data
is required. 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): def __init__(self, hs, client_name, handler):
self.client_name = client_name self.client_name = client_name