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 a6ca205 commit 045d0c0Copy full SHA for 045d0c0
packages/cli-v3/src/workers/prod/entry-point.ts
@@ -545,9 +545,12 @@ class ProdWorker {
545
this.#resumeAfterDuration();
546
}, 15_000);
547
} 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;
+ // Just log this for now, but don't automatically resume. Wait for the external checkpoint-based resume.
+ logger.debug("Checkpoint cancellation timed out", {
+ workerId,
551
+ message,
552
+ error,
553
+ });
554
}
555
556
return;
0 commit comments