summary refs log tree commit diff
path: root/synapse/util/retryutils.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-06-04 12:14:41 +0100
committerRichard van der Hoff <richard@matrix.org>2019-06-04 12:14:41 +0100
commit8699f380f035550ca05d50eadb1fd03fab5ec86b (patch)
tree88703b7ca149135e256ec52a386d9b2a8ab2a4fd /synapse/util/retryutils.py
parentMerge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff)
downloadsynapse-8699f380f035550ca05d50eadb1fd03fab5ec86b.tar.xz
hotfix RetryLimiter
Diffstat (limited to 'synapse/util/retryutils.py')
-rw-r--r--synapse/util/retryutils.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/util/retryutils.py b/synapse/util/retryutils.py

index f6dfa77d8f..1a77456498 100644 --- a/synapse/util/retryutils.py +++ b/synapse/util/retryutils.py
@@ -97,7 +97,12 @@ def get_retry_limiter(destination, clock, store, ignore_backoff=False, **kwargs) defer.returnValue( RetryDestinationLimiter( - destination, clock, store, retry_interval, backoff_on_failure, **kwargs + destination, + clock, + store, + retry_interval, + backoff_on_failure=backoff_on_failure, + **kwargs ) )