Skip to content

Commit 09463c7

Browse files
chore(manifest): allow forced shutdown exit
1 parent 872102c commit 09463c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/scripts/run-manifest-e2e.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,11 +310,11 @@ function isExpectedServeExit(info) {
310310
return true;
311311
}
312312

313-
if (code === 130 || code === 143) {
313+
if (code === 130 || code === 137 || code === 143) {
314314
return true;
315315
}
316316

317-
if (code == null && (signal === 'SIGINT' || signal === 'SIGTERM')) {
317+
if (code == null && ['SIGINT', 'SIGTERM', 'SIGKILL'].includes(signal)) {
318318
return true;
319319
}
320320

0 commit comments

Comments
 (0)