diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-13 11:39:38 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-13 11:39:38 +0100 |
commit | c044aca1fdcdd7a5c8a16ef709e961c141909004 (patch) | |
tree | 38ebba516ceef2be2a37be9a67a76d74f2739cf9 /demo/start.sh | |
parent | Comment (diff) | |
parent | Add some metrics about the reactor (diff) | |
download | synapse-c044aca1fdcdd7a5c8a16ef709e961c141909004.tar.xz |
Merge branch 'erikj/reactor_metrics' into erikj/dictionary_cache
Diffstat (limited to 'demo/start.sh')
-rwxr-xr-x | demo/start.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demo/start.sh b/demo/start.sh index b5dea5e176..572dbfab0b 100755 --- a/demo/start.sh +++ b/demo/start.sh @@ -23,7 +23,6 @@ for port in 8080 8081 8082; do #rm $DIR/etc/$port.config python -m synapse.app.homeserver \ --generate-config \ - --enable_registration \ -H "localhost:$https_port" \ --config-path "$DIR/etc/$port.config" \ @@ -36,6 +35,8 @@ for port in 8080 8081 8082; do fi fi + perl -p -i -e 's/^enable_registration:.*/enable_registration: true/g' $DIR/etc/$port.config + python -m synapse.app.homeserver \ --config-path "$DIR/etc/$port.config" \ -D \ |