Skip to content

Commit 045d0c0

Browse files
committed
ignore checkpoint cancellation timeouts
1 parent a6ca205 commit 045d0c0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/cli-v3/src/workers/prod/entry-point.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -545,9 +545,12 @@ class ProdWorker {
545545
this.#resumeAfterDuration();
546546
}, 15_000);
547547
} catch (error) {
548-
// If the cancellation times out, we will proceed as if the checkpoint was canceled
549-
logger.debug("Checkpoint cancellation timed out", { error });
550-
break noResume;
548+
// Just log this for now, but don't automatically resume. Wait for the external checkpoint-based resume.
549+
logger.debug("Checkpoint cancellation timed out", {
550+
workerId,
551+
message,
552+
error,
553+
});
551554
}
552555

553556
return;

0 commit comments

Comments
 (0)