We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5695f57 commit 3e78086Copy full SHA for 3e78086
packages/core/src/v3/errors.ts
@@ -161,7 +161,6 @@ export function shouldRetryError(error: TaskRunError): boolean {
161
case "TASK_ALREADY_RUNNING":
162
case "TASK_PROCESS_SIGKILL_TIMEOUT":
163
case "TASK_PROCESS_SIGSEGV":
164
- case "TASK_PROCESS_SIGTERM":
165
case "TASK_PROCESS_OOM_KILLED":
166
case "TASK_PROCESS_MAYBE_OOM_KILLED":
167
case "TASK_RUN_CANCELLED":
@@ -180,6 +179,7 @@ export function shouldRetryError(error: TaskRunError): boolean {
180
179
case "TASK_RUN_CRASHED":
181
case "TASK_RUN_HEARTBEAT_TIMEOUT":
182
case "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE":
+ case "TASK_PROCESS_SIGTERM":
183
return true;
184
185
default:
0 commit comments