summary refs log tree commit diff
path: root/synapse/util/retryutils.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-26 12:09:38 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-26 12:09:38 +0000
commitf5a623f0700432597c70729bde727c7ad4b7ed9e (patch)
tree8b6c3b5c4ad4a97e8936ce081c45cddf2d840eb2 /synapse/util/retryutils.py
parentMerge pull request #6145 from matrix-org/erikj/fix_censored_redactions (diff)
parentMerge pull request #6146 from matrix-org/erikj/fix_destination_retry_timings (diff)
downloadsynapse-f5a623f0700432597c70729bde727c7ad4b7ed9e.tar.xz
Merge pull request #6146 from matrix-org/erikj/fix_destination_retry_timings
Diffstat (limited to 'synapse/util/retryutils.py')
-rw-r--r--synapse/util/retryutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/retryutils.py b/synapse/util/retryutils.py

index a5f2fbef5c..af69587196 100644 --- a/synapse/util/retryutils.py +++ b/synapse/util/retryutils.py
@@ -29,7 +29,7 @@ MIN_RETRY_INTERVAL = 10 * 60 * 1000 RETRY_MULTIPLIER = 5 # a cap on the backoff. (Essentially none) -MAX_RETRY_INTERVAL = 2 ** 63 +MAX_RETRY_INTERVAL = 2 ** 62 class NotRetryingDestination(Exception):