diff options
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r-- | synapse/config/experimental.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py index 447476fbfa..2386d38df0 100644 --- a/synapse/config/experimental.py +++ b/synapse/config/experimental.py @@ -81,3 +81,9 @@ class ExperimentalConfig(Config): # MSC2654: Unread counts self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False) + + # Allow for the configuration of max request retries and min/max retry delays + # in the matrix federation client + self.max_long_retry_delay = experimental.get("max_long_retry_delay", 60) + self.min_retry_delay = experimental.get("min_retry_delay", 2) + self.max_long_retries = experimental.get("max_long_retries", 10) |