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 926a6ff commit 30f3d7fCopy full SHA for 30f3d7f
packages/cli-v3/src/entryPoints/deploy-run-controller.ts
@@ -371,10 +371,18 @@ class ProdWorker {
371
async #prepareForRetry() {
372
// Clear state for retrying
373
this.paused = false;
374
+ this.nextResumeAfter = undefined;
375
this.waitForPostStart = false;
376
this.executing = false;
377
this.attemptFriendlyId = undefined;
378
this.attemptNumber = undefined;
379
+
380
+ // Clear replay state
381
+ this.waitForTaskReplay = undefined;
382
+ this.waitForBatchReplay = undefined;
383
+ this.readyForLazyAttemptReplay = undefined;
384
+ this.durationResumeFallback = undefined;
385
+ this.readyForResumeReplay = undefined;
386
}
387
388
// MARK: CHECKPOINT PREP
0 commit comments