This commit is contained in:
cmdr2 2024-10-09 14:19:28 +05:30
parent 9761b172de
commit 16463431dd

View File

@ -143,7 +143,7 @@ def start_backend():
cmd = "webui.bat" if OS_NAME == "Windows" else "./webui.sh" cmd = "webui.bat" if OS_NAME == "Windows" else "./webui.sh"
print("starting", cmd, WEBUI_DIR) print("starting", cmd, WEBUI_DIR)
backend_process = run_in_conda([cmd], cwd=WEBUI_DIR, env=env, wait=False, output_prefix="[WEBUI] ") backend_process = run_in_conda([cmd], cwd=WEBUI_DIR, env=env, wait=False, output_prefix="[WebUI] ")
restart_if_dead_thread = threading.Thread(target=restart_if_webui_dies_after_starting) restart_if_dead_thread = threading.Thread(target=restart_if_webui_dies_after_starting)
restart_if_dead_thread.start() restart_if_dead_thread.start()