-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Have been using BullMq Pro for over a year now, great product BTW,
I am hoping to get some support on delayed job, I am using the latest version of BullMq Pro (7.32.2), and delayed jobs never seem to get executed
const delayedQueue = new QueuePro('DELAYED_QUEUE', {
connection: getRedisConnection(),
});
await delayedQueue.add(
'DELAYED_QUEUE',
{ token: 'someId' },
{
jobId: 'some_unique_id',
removeOnComplete: true,
removeOnFail: true,
delay: 15 * 60 * 1000,
group: {
id: 'unique_group_id',
},
}
);
const worker = new WorkerPro('DELAYED_QUEUE',
async (job)=>{
console.log(job.data); //This is never called
}, {
connection: getRedisConnection(),
});
Hoping someone can help
Metadata
Metadata
Assignees
Labels
No labels