RomainLanz / adonis-bull-queue

Queue system based on BullMQ for AdonisJS
MIT License
147 stars 26 forks source link

When we add queue with delay then queue is not working #18

Closed TusharVashishth closed 1 year ago

TusharVashishth commented 1 year ago

Hi , when I am adding the queue with delay like this

await Queue.dispatch("App/Jobs/TestQueueJob", { type:"testing" }, { delay:5000 });

Then It's not working queue added in the Redis database but after that It's not processing. could you please help me in this .

but when we do normal dispatch without any delay then It's working fine .