Skip to content

Commit 8bd7ffe

Browse files
committed
don't crash run on lazy attempt errors and count on retry
1 parent a38f713 commit 8bd7ffe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apps/coordinator/src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -653,11 +653,11 @@ class TaskCoordinator {
653653

654654
log.error("READY_FOR_LAZY_ATTEMPT error", { error });
655655

656-
await crashRun({
657-
name: "ReadyForLazyAttemptError",
658-
message:
659-
error instanceof Error ? `Unexpected error: ${error.message}` : "Unexpected error",
660-
});
656+
// await crashRun({
657+
// name: "ReadyForLazyAttemptError",
658+
// message:
659+
// error instanceof Error ? `Unexpected error: ${error.message}` : "Unexpected error",
660+
// });
661661

662662
return;
663663
}

0 commit comments

Comments
 (0)