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 5eaa2e2 commit ee34b15Copy full SHA for ee34b15
internal-packages/run-engine/src/engine/systems/waitpointSystem.ts
@@ -573,6 +573,11 @@ export class WaitpointSystem {
573
} else {
574
if (snapshot.executionStatus !== "RUN_CREATED" && !snapshot.checkpointId) {
575
// TODO: We're screwed, should probably fail the run immediately
576
+ this.$.logger.error(`#continueRunIfUnblocked: run has no checkpoint`, {
577
+ runId: run.id,
578
+ snapshot,
579
+ blockingWaitpoints,
580
+ });
581
throw new Error(`#continueRunIfUnblocked: run has no checkpoint: ${run.id}`);
582
}
583
0 commit comments