Skip to main content

Type Alias: RunRedriveFrom

RunRedriveFrom = { kind: "lastFailure"; } | { kind: "start"; } | { kind: "stage"; stageId: string; }

Defined in: packages/workflow-engine/src/kernel/commands.ts:457

Where a run.redrive resumes from.

Union Members​

Type Literal​

{ kind: "lastFailure"; }

Conductor's retry: resume at the earliest stage that is not COMPLETED — in practice the stage that failed — leaving completed stages untouched.


Type Literal​

{ kind: "start"; }

Conductor's restart: re-run the whole pipeline from the first group.


Type Literal​

{ kind: "stage"; stageId: string; }

Conductor's rerun: resume at a chosen stage.