diff options
author | David Robertson <davidr@element.io> | 2022-03-29 11:41:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 10:41:19 +0000 |
commit | a2b00a44865ff11810c5302e33c1c61ce21a030e (patch) | |
tree | d16f0f5378588b3fb2c4584b00f271219255e2c1 /synapse/replication | |
parent | Remove unused `auth_event_ids` argument plumbing (#12304) (diff) | |
download | synapse-a2b00a44865ff11810c5302e33c1c61ce21a030e.tar.xz |
Bump `black` and `click` versions (#12320)
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/http/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py index f1abb98653..2bd244ed79 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py @@ -275,7 +275,7 @@ class ReplicationEndpoint(metaclass=abc.ABCMeta): if attempts > cls.RETRY_ON_CONNECT_ERROR_ATTEMPTS: raise - delay = 2 ** attempts + delay = 2**attempts logger.warning( "%s request connection failed; retrying in %ds: %r", cls.NAME, |