Skip to content
Snippets Groups Projects
Unverified Commit aa530e68 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Call RetryLimiter correctly (#5340)

Fixes a regression introduced in #5335.
parent dae224a7
No related branches found
No related tags found
No related merge requests found
Fix a bug where we could rapidly mark a server as unreachable even though it was only down for a few minutes.
...@@ -97,7 +97,12 @@ def get_retry_limiter(destination, clock, store, ignore_backoff=False, **kwargs) ...@@ -97,7 +97,12 @@ def get_retry_limiter(destination, clock, store, ignore_backoff=False, **kwargs)
defer.returnValue( defer.returnValue(
RetryDestinationLimiter( RetryDestinationLimiter(
destination, clock, store, retry_interval, backoff_on_failure, **kwargs destination,
clock,
store,
retry_interval,
backoff_on_failure=backoff_on_failure,
**kwargs
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment