diff options
author | H. Shay <hillerys@element.io> | 2022-04-19 12:42:14 -0700 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2022-04-21 11:49:51 +0100 |
commit | f304297486b36318724c22f849a62e6fe493541e (patch) | |
tree | 725ac59bd3170f43a2473c3c9522a7841b8039ba | |
parent | add max_short_retries to config and rename min_retry_delay -> max_short_retry... (diff) | |
download | synapse-f304297486b36318724c22f849a62e6fe493541e.tar.xz |
lint
-rw-r--r-- | synapse/config/experimental.py | 2 |
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) |