don't crash run on lazy attempt errors and count on retry

This commit is contained in:
nicktrn
2025-02-12 19:41:16 +00:00
parent a38f713e32
commit 8bd7ffed8a
+5 -5
View File
@@ -653,11 +653,11 @@ class TaskCoordinator {
log.error("READY_FOR_LAZY_ATTEMPT error", { error });
await crashRun({
name: "ReadyForLazyAttemptError",
message:
error instanceof Error ? `Unexpected error: ${error.message}` : "Unexpected error",
});
// await crashRun({
// name: "ReadyForLazyAttemptError",
// message:
// error instanceof Error ? `Unexpected error: ${error.message}` : "Unexpected error",
// });
return;
}