From c30128cf95befc11a5deafa77b6c209f0bf56689 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sun, 24 May 2026 18:03:32 +0200 Subject: [PATCH] check every 50ms -> 250ms for restart --- cli/src/zshell/subcommands/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/zshell/subcommands/shell.py b/cli/src/zshell/subcommands/shell.py index de8ca3b..4b30da7 100644 --- a/cli/src/zshell/subcommands/shell.py +++ b/cli/src/zshell/subcommands/shell.py @@ -42,7 +42,7 @@ def restart(no_daemon: bool = False): result = subprocess.run(args + ["kill"], capture_output=True) if result.returncode == 255: break - time.sleep(0.05) + time.sleep(0.25) start_instance(no_daemon=no_daemon)