mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Remove the cap on federation retry interval. (#6026)
Essentially the intention here is to end up blacklisting servers which never respond to federation requests. Fixes https://github.com/matrix-org/synapse/issues/5113.
This commit is contained in:
parent
0388beafe4
commit
3d882a7ba5
1
changelog.d/6026.feature
Normal file
1
changelog.d/6026.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
Stop sending federation transactions to servers which have been down for a long time.
|
@ -28,8 +28,8 @@ MIN_RETRY_INTERVAL = 10 * 60 * 1000
|
|||||||
# how much we multiply the backoff by after each subsequent fail
|
# how much we multiply the backoff by after each subsequent fail
|
||||||
RETRY_MULTIPLIER = 5
|
RETRY_MULTIPLIER = 5
|
||||||
|
|
||||||
# a cap on the backoff
|
# a cap on the backoff. (Essentially none)
|
||||||
MAX_RETRY_INTERVAL = 24 * 60 * 60 * 1000
|
MAX_RETRY_INTERVAL = 2 ** 63
|
||||||
|
|
||||||
|
|
||||||
class NotRetryingDestination(Exception):
|
class NotRetryingDestination(Exception):
|
||||||
|
Loading…
Reference in New Issue
Block a user