fix(web): remove leaked SIGINT handler when keepAlive=false

This commit is contained in:
Peter Steinberger 2026-02-14 22:37:05 +00:00
parent 6bc5987d6c
commit 5fd1822c7c
1 changed files with 1 additions and 0 deletions

View File

@ -331,6 +331,7 @@ export async function monitorWebChannel(
if (!keepAlive) {
await closeListener();
process.removeListener("SIGINT", handleSigint);
return;
}