summary refs log tree commit diff
diff options
context:
space:
mode:
authormanuroe <manuroe@users.noreply.github.com>2021-04-22 18:49:42 +0200
committerGitHub <noreply@github.com>2021-04-22 17:49:42 +0100
commitc1ddbbde4fb948cf740d4c59869157943d3711c6 (patch)
tree9a7b01557e2da35938afcc1e4f751d87061e7820
parentLimit length of accepted email addresses (#9855) (diff)
downloadsynapse-c1ddbbde4fb948cf740d4c59869157943d3711c6.tar.xz
Handle all new rate limits in demo scripts (#9858)
-rw-r--r--changelog.d/9858.misc1
-rwxr-xr-xdemo/start.sh54
2 files changed, 43 insertions, 12 deletions
diff --git a/changelog.d/9858.misc b/changelog.d/9858.misc
new file mode 100644

index 0000000000..f7e286fa69 --- /dev/null +++ b/changelog.d/9858.misc
@@ -0,0 +1 @@ +Handle recently added rate limits correctly when using `--no-rate-limit` with the demo scripts. diff --git a/demo/start.sh b/demo/start.sh
index 621a5698b8..bc4854091b 100755 --- a/demo/start.sh +++ b/demo/start.sh
@@ -96,18 +96,48 @@ for port in 8080 8081 8082; do # Check script parameters if [ $# -eq 1 ]; then if [ $1 = "--no-rate-limit" ]; then - # messages rate limit - echo 'rc_messages_per_second: 1000' >> $DIR/etc/$port.config - echo 'rc_message_burst_count: 1000' >> $DIR/etc/$port.config - - # registration rate limit - printf 'rc_registration:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config - - # login rate limit - echo 'rc_login:' >> $DIR/etc/$port.config - printf ' address:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config - printf ' account:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config - printf ' failed_attempts:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config + + # Disable any rate limiting + ratelimiting=$(cat <<-RC + rc_message: + per_second: 1000 + burst_count: 1000 + rc_registration: + per_second: 1000 + burst_count: 1000 + rc_login: + address: + per_second: 1000 + burst_count: 1000 + account: + per_second: 1000 + burst_count: 1000 + failed_attempts: + per_second: 1000 + burst_count: 1000 + rc_admin_redaction: + per_second: 1000 + burst_count: 1000 + rc_joins: + local: + per_second: 1000 + burst_count: 1000 + remote: + per_second: 1000 + burst_count: 1000 + rc_3pid_validation: + per_second: 1000 + burst_count: 1000 + rc_invites: + per_room: + per_second: 1000 + burst_count: 1000 + per_user: + per_second: 1000 + burst_count: 1000 + RC + ) + echo "${ratelimiting}" >> $DIR/etc/$port.config fi fi