diff --git a/server/src/worker.ts b/server/src/worker.ts index d50e6220..baef2387 100644 --- a/server/src/worker.ts +++ b/server/src/worker.ts @@ -20,7 +20,7 @@ connection.on('error', (err) => { const workflowQueue = new Queue('workflow', { connection }); const worker = new Worker('workflow', async job => { - const { runId, userId } = job.data; + const { runId, userId } = job.data; try { const result = await handleRunRecording(runId, userId); return result;