diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-17 17:30:11 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-17 17:30:11 +0000 |
commit | 1177245e8617709c32adeeae67781d2940da9ffd (patch) | |
tree | bb232668b5b12d58d2a1a1834928ce5a2a6011e8 /synapse/app/synctl.py | |
parent | Use absolute path when loading delta sql files (diff) | |
parent | Merge pull request #75 from matrix-org/dont_write_bytecode (diff) | |
download | synapse-1177245e8617709c32adeeae67781d2940da9ffd.tar.xz |
Merge branch 'hotfixes-v0.7.0g' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'synapse/app/synctl.py')
-rwxr-xr-x | synapse/app/synctl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/synctl.py b/synapse/app/synctl.py index 363c20f994..3a70a248dc 100755 --- a/synapse/app/synctl.py +++ b/synapse/app/synctl.py @@ -19,7 +19,7 @@ import os import subprocess import signal -SYNAPSE = ["python", "-m", "synapse.app.homeserver"] +SYNAPSE = ["python", "-B", "-m", "synapse.app.homeserver"] CONFIGFILE = "homeserver.yaml" PIDFILE = "homeserver.pid" |