Node Js: Redis job is not completing after finish its task
问题 Hope you guys are doing great. I implemented BullMQ (next major version of Bull) into my nodejs project to schedule the jobs to send emails. For example, send email of forget password request. So, I have written my code something like below. User Service: await resetPasswordJob({email: 'xyz@test.com'}); // from service I'm calling a job Reset Password Job: const {Queue} = require('bullmq'); const IOredis = require('ioredis'); const connection = new IOredis(process.env.REDIS_PORT || 6379);