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(infra): add error listener to spawnDetachedGatewayProcess to prevent crash on async spawn failure
spawnDetachedGatewayProcess() calls child.unref() without attaching an
error listener. If spawn() fails asynchronously (ENOMEM, missing
executable), the ChildProcess emits an unhandled error event that
crashes the Node parent process. Add a no-op .on("error") handler
before unref() to prevent the unhandled exception.
Fixes#101458
0 commit comments