fix(core): restore SIGHUP exit handler (#16057) (#18527)

pull/19028/head
Dax 2026-03-24 17:42:58 -04:00 committed by GitHub
parent 00d3b831fc
commit 56644be95a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ export const { use: useExit, provider: ExitProvider } = createSimpleContext({
message: store,
},
)
process.on("SIGHUP", () => exit())
return exit
},
})