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 c576e98 commit 3fd8ea8Copy full SHA for 3fd8ea8
internal-packages/run-engine/src/engine/systems/executionSnapshotSystem.ts
@@ -277,7 +277,8 @@ export class ExecutionSnapshotSystem {
277
description: snapshot.description,
278
previousSnapshotId,
279
runId: run.id,
280
- runStatus: run.status,
+ // We can't set the runStatus to DEQUEUED because it will break older runners
281
+ runStatus: run.status === "DEQUEUED" ? "PENDING" : run.status,
282
attemptNumber: run.attemptNumber ?? undefined,
283
batchId,
284
environmentId,
0 commit comments