summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-10-02 11:05:22 +0100
committerGitHub <noreply@github.com>2019-10-02 11:05:22 +0100
commitb4fe7e19c0dd51269965140eee38ae8f68382a5d (patch)
treefe68c8424188b48f2c32e64c3c53f172f92803d6 /synapse/util
parentMerge pull request #6145 from matrix-org/erikj/fix_censored_redactions (diff)
parentNewsfile (diff)
downloadsynapse-b4fe7e19c0dd51269965140eee38ae8f68382a5d.tar.xz
Merge pull request #6146 from matrix-org/erikj/fix_destination_retry_timings
Fix errors storing large retry intervals.
Diffstat (limited to 'synapse/util')
-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):