Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Pass the batchId through from previous snapshots when dequeuing
  • Loading branch information
matt-aitken committed Apr 7, 2025
commit 5e80ba39dcd4ef926496d84162a213400ffda14c
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ export class DequeueSystem {
projectId: snapshot.projectId,
organizationId: snapshot.organizationId,
checkpointId: snapshot.checkpointId ?? undefined,
batchId: snapshot.batchId ?? undefined,
completedWaitpoints: snapshot.completedWaitpoints,
workerId,
runnerId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ export class RunAttemptSystem {
environmentType: latestSnapshot.environmentType,
projectId: latestSnapshot.projectId,
organizationId: latestSnapshot.organizationId,
batchId: latestSnapshot.batchId ?? undefined,
completedWaitpoints: latestSnapshot.completedWaitpoints,
workerId,
runnerId,
});
Expand Down