Skip to content

Commit 7591b6e

Browse files
authored
Fix v4 restore race condition (#1870)
1 parent cb6d697 commit 7591b6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli-v3/src/entryPoints/managed-run-controller.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@ class ManagedRunController {
485485
return;
486486
}
487487
case "FINISHED": {
488-
console.log("Run is finished, nothing to do");
488+
console.log("Run is finished, will wait for next run");
489+
this.waitForNextRun();
489490
return;
490491
}
491492
case "QUEUED_EXECUTING":

0 commit comments

Comments
 (0)