summary refs log tree commit diff
diff options
context:
space:
mode:
authorH. Shay <hillerys@element.io>2022-04-19 12:42:14 -0700
committerErik Johnston <erik@matrix.org>2022-04-21 11:49:51 +0100
commitf304297486b36318724c22f849a62e6fe493541e (patch)
tree725ac59bd3170f43a2473c3c9522a7841b8039ba
parentadd max_short_retries to config and rename min_retry_delay -> max_short_retry... (diff)
downloadsynapse-f304297486b36318724c22f849a62e6fe493541e.tar.xz
lint
-rw-r--r--synapse/config/experimental.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index adb98feb60..e30be96212 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -87,4 +87,4 @@ class ExperimentalConfig(Config):
         self.max_long_retry_delay = experimental.get("max_long_retry_delay", 60)
         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
+        self.max_short_retries = experimental.get("max_short_retries", 3)