Fix for old clients missing the cached tasks

This commit is contained in:
Eric Allam
2023-08-19 07:32:34 +01:00
parent b1b9321ad2
commit 7362feed71
@@ -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,