Skip to content

Commit ee34b15

Browse files
committed
Added some logging for #continueRunIfUnblocked: run has no checkpoint
1 parent 5eaa2e2 commit ee34b15

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal-packages/run-engine/src/engine/systems/waitpointSystem.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,11 @@ export class WaitpointSystem {
573573
} else {
574574
if (snapshot.executionStatus !== "RUN_CREATED" && !snapshot.checkpointId) {
575575
// 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+
});
576581
throw new Error(`#continueRunIfUnblocked: run has no checkpoint: ${run.id}`);
577582
}
578583

0 commit comments

Comments
 (0)