diff --git a/apps/webapp/app/services/runs/performRunExecutionV2.server.ts b/apps/webapp/app/services/runs/performRunExecutionV2.server.ts index 0b4c0b025..d27b2df0f 100644 --- a/apps/webapp/app/services/runs/performRunExecutionV2.server.ts +++ b/apps/webapp/app/services/runs/performRunExecutionV2.server.ts @@ -542,7 +542,7 @@ function prepareTasksForRun(tasks: FoundTask[]): CachedTask[] { function prepareTaskForRun(task: FoundTask): CachedTask { return { - id: task.id, + id: task.idempotencyKey, // We should eventually move this back to task.id status: task.status, idempotencyKey: task.idempotencyKey, noop: task.noop,