Questions tagged [nestjsbull]

3 questions
2
votes
1 answer

How do I know nestjs/bull is actually connected to redis?

I am using nestjs with bull queues. I am using @nestjs/bull package and everything works fine. But if for some reason, my application is not connected to redis, I don't get any error. The application runs properly, doesn't get any errors but doesn't…
Pranta
  • 2,928
  • 7
  • 24
  • 37
1
vote
1 answer

Mikro EntityManager in NestJS bull processor not working

I want to make some queries in the task processor: @Processor('audio') export class AudioProcessor { constructor(private readonly entityManager: EntityManager) { } @Process() public async process(job: Job) { // ! this promise…
鸿则_
  • 314
  • 1
  • 14
0
votes
1 answer

How to remove a job from a queue in @nestjs/bull?

I have two processors the first one is called with a callback function and never call it, this way the job still waiting and do not close unless the timeout, the other process find the waiting job of the processor 1 and moveToCompleted, but for a…