Skip to content

Commit a55294b

Browse files
authored
fix(run-engine): retry SIGSEGV errors (#2514)
1 parent c9d1aad commit a55294b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/core/src/v3/errors.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ export function shouldLookupRetrySettings(error: TaskRunError): boolean {
352352
switch (error.code) {
353353
case "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE":
354354
case "TASK_PROCESS_SIGTERM":
355+
case "TASK_PROCESS_SIGSEGV":
355356
return true;
356357

357358
default:

0 commit comments

Comments
 (0)