chore: lint

This commit is contained in:
karishmas6
2024-10-10 03:24:19 +05:30
parent 258d0aa9a2
commit 3c648fc5f4

View File

@@ -20,7 +20,7 @@ connection.on('error', (err) => {
const workflowQueue = new Queue('workflow', { connection }); const workflowQueue = new Queue('workflow', { connection });
const worker = new Worker('workflow', async job => { const worker = new Worker('workflow', async job => {
const { runId, userId } = job.data; const { runId, userId } = job.data;
try { try {
const result = await handleRunRecording(runId, userId); const result = await handleRunRecording(runId, userId);
return result; return result;