Skip to content

Commit 0822374

Browse files
committed
fix(bullmq): call clean with correct arguments
1 parent 5a44421 commit 0822374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/responders/bullmq-responders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ async function respondQueueCommand(
127127
respond(ws, msg.id);
128128
break;
129129
case "clean":
130-
await queue.clean(data.grace, data.status, data.limit);
130+
await queue.clean(data.grace, data.limit, data.status);
131131
respond(ws, msg.id);
132132
break;
133133
case "retryJobs":

0 commit comments

Comments
 (0)