diff options
author | Mark Haines <mjark@negativecurvature.net> | 2015-08-12 09:39:57 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2015-08-12 09:39:57 +0100 |
commit | 275f7c987c1f61a77802d1ffdc40ff2a4a1f3365 (patch) | |
tree | 86f7089be221dd5cbbc55920b3a06b3cb45a3941 | |
parent | Merge pull request #218 from matrix-org/mockfix (diff) | |
parent | Fix the cleanup script to use the right $DIR (diff) | |
download | synapse-275f7c987c1f61a77802d1ffdc40ff2a4a1f3365.tar.xz |
Merge pull request #182 from matrix-org/manu/fix_no_rate_limit_in_federation_demo
Federation demo start.sh: Fixed --no-rate-limit param in the script
-rwxr-xr-x | demo/clean.sh | 6 | ||||
-rwxr-xr-x | demo/start.sh | 17 |
2 files changed, 13 insertions, 10 deletions
diff --git a/demo/clean.sh b/demo/clean.sh index c5dabd4767..418ca9457e 100755 --- a/demo/clean.sh +++ b/demo/clean.sh @@ -11,7 +11,9 @@ if [ -f $PID_FILE ]; then exit 1 fi -find "$DIR" -name "*.log" -delete -find "$DIR" -name "*.db" -delete +for port in 8080 8081 8082; do + rm -rf $DIR/$port + rm -rf $DIR/media_store.$port +done rm -rf $DIR/etc diff --git a/demo/start.sh b/demo/start.sh index b9cc14b9d2..b5dea5e176 100755 --- a/demo/start.sh +++ b/demo/start.sh @@ -8,14 +8,6 @@ cd "$DIR/.." mkdir -p demo/etc -# Check the --no-rate-limit param -PARAMS="" -if [ $# -eq 1 ]; then - if [ $1 = "--no-rate-limit" ]; then - PARAMS="--rc-messages-per-second 1000 --rc-message-burst-count 1000" - fi -fi - export PYTHONPATH=$(readlink -f $(pwd)) @@ -35,6 +27,15 @@ for port in 8080 8081 8082; do -H "localhost:$https_port" \ --config-path "$DIR/etc/$port.config" \ + # Check script parameters + if [ $# -eq 1 ]; then + if [ $1 = "--no-rate-limit" ]; then + # Set high limits in config file to disable rate limiting + perl -p -i -e 's/rc_messages_per_second.*/rc_messages_per_second: 1000/g' $DIR/etc/$port.config + perl -p -i -e 's/rc_message_burst_count.*/rc_message_burst_count: 1000/g' $DIR/etc/$port.config + fi + fi + python -m synapse.app.homeserver \ --config-path "$DIR/etc/$port.config" \ -D \ |