Skip to content

Commit 139a8a3

Browse files
Update content/techniques/queues.md
1 parent bd8801d commit 139a8a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ import { QueueEventsHost, QueueEventsListener, OnQueueEvent } from '@nestjs/bull
324324

325325
@QueueEventsListener('audio')
326326
export class AudioEventsListener extends QueueEventsHost {
327-
328327
@OnQueueEvent('active')
329328
onActive(job: { jobId: string; prev?: string; }) {
330329
console.log(
@@ -333,6 +332,7 @@ export class AudioEventsListener extends QueueEventsHost {
333332
}
334333

335334
// ...
335+
}
336336
```
337337

338338
> info **Hint** QueueEvent Listeners must be registered as `providers` so the `@nestjs/bullmq` package can pick them up.

0 commit comments

Comments
 (0)