Skip to content

Commit 7362fee

Browse files
committed
Fix for old clients missing the cached tasks
1 parent b1b9321 commit 7362fee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/services/runs/performRunExecutionV2.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ function prepareTasksForRun(tasks: FoundTask[]): CachedTask[] {
542542

543543
function prepareTaskForRun(task: FoundTask): CachedTask {
544544
return {
545-
id: task.id,
545+
id: task.idempotencyKey, // We should eventually move this back to task.id
546546
status: task.status,
547547
idempotencyKey: task.idempotencyKey,
548548
noop: task.noop,

0 commit comments

Comments
 (0)