summary refs log tree commit diff
path: root/synapse/config/experimental.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/config/experimental.py')
-rw-r--r--synapse/config/experimental.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 2386d38df0..adb98feb60 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -85,5 +85,6 @@ class ExperimentalConfig(Config):
         # 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_short_retry_delay = experimental.get("max_short_retry_delay", 2)
         self.max_long_retries = experimental.get("max_long_retries", 10)
+        self.max_short_retries = experimental.get("max_short_retries", 3)
\ No newline at end of file