Skip to content
Snippets Groups Projects
Unverified Commit ceaa7697 authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Remove room and user invite ratelimits in default unit test config (#9871)

parent 9d25a0ae
No related branches found
No related tags found
No related merge requests found
Disable invite rate-limiting by default when running the unit tests.
\ No newline at end of file
...@@ -153,6 +153,10 @@ def default_config(name, parse=False): ...@@ -153,6 +153,10 @@ def default_config(name, parse=False):
"local": {"per_second": 10000, "burst_count": 10000}, "local": {"per_second": 10000, "burst_count": 10000},
"remote": {"per_second": 10000, "burst_count": 10000}, "remote": {"per_second": 10000, "burst_count": 10000},
}, },
"rc_invites": {
"per_room": {"per_second": 10000, "burst_count": 10000},
"per_user": {"per_second": 10000, "burst_count": 10000},
},
"rc_3pid_validation": {"per_second": 10000, "burst_count": 10000}, "rc_3pid_validation": {"per_second": 10000, "burst_count": 10000},
"saml2_enabled": False, "saml2_enabled": False,
"public_baseurl": None, "public_baseurl": None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment