hotfix(cli): replace raw subprocess tracebacks with styled error messages and fix restart race condition #96

Merged
zach merged 5 commits from hotfix-restart-race-condition into main 2026-05-24 18:23:43 +02:00
Showing only changes of commit c30128cf95 - Show all commits
+1 -1
View File
@@ -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)