mirror of https://github.com/zulip/zulip.git
upgrade: Make calling shutdown_server twice, only try once.
This commit is contained in:
parent
a46f6df91e
commit
da5201b986
|
@ -116,9 +116,10 @@ IS_SERVER_UP = True
|
|||
def shutdown_server() -> None:
|
||||
global IS_SERVER_UP
|
||||
|
||||
logging.info("Stopping Zulip...")
|
||||
subprocess.check_call(["./scripts/stop-server"], preexec_fn=su_to_zulip)
|
||||
IS_SERVER_UP = False
|
||||
if IS_SERVER_UP:
|
||||
logging.info("Stopping Zulip...")
|
||||
subprocess.check_call(["./scripts/stop-server"], preexec_fn=su_to_zulip)
|
||||
IS_SERVER_UP = False
|
||||
|
||||
|
||||
# postgresql.version is required for database servers, but wasn't
|
||||
|
|
Loading…
Reference in New Issue