mirror of https://github.com/zulip/zulip.git
start-server: Make start-server a clean explicit no-op if already running.
Currently, the output from `start-server` if the server is already running is potentially confusing, since it says ERROR several times: ``` $ ./scripts/start-server 2023-04-04 15:35:12,737 start-server: Running syntax and database checks System check identified no issues (15 silenced). 2023-04-04 15:35:16,211 start-server: Starting Tornado process on port 9800 zulip-tornado:zulip-tornado-port-9800: ERROR (already started) 2023-04-04 15:35:16,528 start-server: Starting Tornado process on port 9801 zulip-tornado:zulip-tornado-port-9801: ERROR (already started) 2023-04-04 15:35:16,844 start-server: Starting django server zulip-django: ERROR (already started) 2023-04-04 15:35:17,605 start-server: Starting workers zulip_deliver_scheduled_emails: ERROR (already started) zulip_deliver_scheduled_messages: ERROR (already started) process-fts-updates: ERROR (already started) 2023-04-04 15:35:18,923 start-server: Done! ``` Catch the simple common case where all of the services are already running, and output a clearer success message: ``` $ ./scripts/start-server 2023-04-04 15:39:52,367 start-server: Running syntax and database checks System check identified no issues (15 silenced). 2023-04-04 15:39:55,857 start-server: Zulip is already started; nothing to do! ```
This commit is contained in:
parent
5b9fb582e2
commit
cb097760b9
|
@ -115,6 +115,14 @@ if (
|
||||||
):
|
):
|
||||||
action = "start"
|
action = "start"
|
||||||
verbing = "Starting"
|
verbing = "Starting"
|
||||||
|
elif action == "start":
|
||||||
|
existing_services = list_supervisor_processes([*workers, "zulip-django", "zulip-tornado:*"])
|
||||||
|
running_services = list_supervisor_processes(
|
||||||
|
[*workers, "zulip-django", "zulip-tornado:*"], only_running=True
|
||||||
|
)
|
||||||
|
if existing_services == running_services:
|
||||||
|
logging.info("Zulip is already started; nothing to do!")
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
def restart_or_start(service: str) -> None:
|
def restart_or_start(service: str) -> None:
|
||||||
|
|
Loading…
Reference in New Issue