You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(daemon): use /proc for daemon process detection on Linux
The isGasTownDaemon function used `ps -p PID -o command=` which doesn't
work on Alpine/BusyBox where ps has limited options. This caused daemon
startup to fail with "removed stale PID file" errors in container envs.
Now uses /proc/PID/cmdline on Linux (more portable), falling back to ps
on macOS and other systems where /proc isn't available.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments