From 8bd7ffed8afcfbdaee64491d1ae12a85683df803 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Wed, 12 Feb 2025 19:41:16 +0000 Subject: [PATCH] don't crash run on lazy attempt errors and count on retry --- apps/coordinator/src/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/coordinator/src/index.ts b/apps/coordinator/src/index.ts index e2a7ba325..c50123e24 100644 --- a/apps/coordinator/src/index.ts +++ b/apps/coordinator/src/index.ts @@ -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; }