summary refs log tree commit diff
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-10-16 17:20:16 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-10-16 17:20:16 +0100
commit479fc9d9b533f066d55507e23dfdde703924a2f0 (patch)
tree4e9434580034f2885eec6fa6b01806d6bd83f9ad /tests/utils.py
parentMerge commit '6d4b79002' into anoa/dinsic_release_1_21_x (diff)
parentMerge pull request #8008 from matrix-org/erikj/add_rate_limiting_to_joins (diff)
downloadsynapse-479fc9d9b533f066d55507e23dfdde703924a2f0.tar.xz
Merge commit '394be6a0e' into anoa/dinsic_release_1_21_x
* commit '394be6a0e':
  Newsfile
  Add ratelimiting on joins
  Add docs for undoing room shutdowns (#7998)
Diffstat (limited to '')
-rw-r--r--tests/utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py

index 420f73c6cf..d543f3ed32 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -154,6 +154,10 @@ def default_config(name, parse=False): "account": {"per_second": 10000, "burst_count": 10000}, "failed_attempts": {"per_second": 10000, "burst_count": 10000}, }, + "rc_joins": { + "local": {"per_second": 10000, "burst_count": 10000}, + "remote": {"per_second": 10000, "burst_count": 10000}, + }, "saml2_enabled": False, "public_baseurl": None, "default_identity_server": None,