mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-25 02:55:46 +03:00
Merge pull request #2127 from APwhitehat/alreadystarted
print something legible if synapse already running
This commit is contained in:
commit
f87b287291
1 changed files with 3 additions and 0 deletions
|
@ -234,6 +234,9 @@ def main():
|
|||
|
||||
if action == "start" or action == "restart":
|
||||
if start_stop_synapse:
|
||||
# Check if synapse is already running
|
||||
if os.path.exists(pidfile) and pid_running(int(open(pidfile).read())):
|
||||
abort("synapse.app.homeserver already running")
|
||||
start(configfile)
|
||||
|
||||
for worker in workers:
|
||||
|
|
Loading…
Reference in a new issue