diff options
author | Erik Johnston <erik@matrix.org> | 2021-03-23 14:52:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 14:52:20 +0000 |
commit | e550ab17adc8dd3c48daf7fedcd09418a73f524b (patch) | |
tree | 51f87a1346c6e4bc5a0d7d852c36790a3a3b6670 /synapse | |
parent | Fix federation stall on concurrent access errors (#9639) (diff) | |
download | synapse-e550ab17adc8dd3c48daf7fedcd09418a73f524b.tar.xz |
Increase default join burst ratelimiting (#9674)
It's legitimate behaviour to try and join a bunch of rooms at once.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/ratelimiting.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/config/ratelimiting.py b/synapse/config/ratelimiting.py index 847d25122c..3f3997f4e5 100644 --- a/synapse/config/ratelimiting.py +++ b/synapse/config/ratelimiting.py @@ -95,11 +95,11 @@ class RatelimitConfig(Config): self.rc_joins_local = RateLimitConfig( config.get("rc_joins", {}).get("local", {}), - defaults={"per_second": 0.1, "burst_count": 3}, + defaults={"per_second": 0.1, "burst_count": 10}, ) self.rc_joins_remote = RateLimitConfig( config.get("rc_joins", {}).get("remote", {}), - defaults={"per_second": 0.01, "burst_count": 3}, + defaults={"per_second": 0.01, "burst_count": 10}, ) # Ratelimit cross-user key requests: @@ -187,10 +187,10 @@ class RatelimitConfig(Config): #rc_joins: # local: # per_second: 0.1 - # burst_count: 3 + # burst_count: 10 # remote: # per_second: 0.01 - # burst_count: 3 + # burst_count: 10 # #rc_3pid_validation: # per_second: 0.003 |