Skip to content

Commit 0e1b21c

Browse files
committed
fix true non-zero exit error display
1 parent 56095a8 commit 0e1b21c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/core/src/v3/errors.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -580,10 +580,7 @@ export function exceptionEventEnhancer(
580580
...getPrettyExceptionEvent("TASK_PROCESS_MAYBE_OOM_KILLED"),
581581
};
582582
default:
583-
return {
584-
...exception,
585-
...getPrettyExceptionEvent("TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE"),
586-
};
583+
return exception;
587584
}
588585
}
589586
break;

0 commit comments

Comments
 (0)