mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Upper bound the backoff.
This commit is contained in:
parent
10766f1e93
commit
64345b7559
@ -214,7 +214,9 @@ class _Recoverer(object):
|
||||
self.backoff_counter = 1
|
||||
yield self.retry()
|
||||
else:
|
||||
self.backoff_counter += 1
|
||||
# cap the backoff to be around 18h => (2^16) = 65536 secs
|
||||
if self.backoff_counter < 16:
|
||||
self.backoff_counter += 1
|
||||
self.recover()
|
||||
else:
|
||||
self._set_service_recovered()
|
||||
|
Loading…
Reference in New Issue
Block a user