bullmq

Node Js: Redis job is not completing after finish its task

天大地大妈咪最大 提交于 2020-12-13 03:07:49
问题 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);

Node Js: Redis job is not completing after finish its task

♀尐吖头ヾ 提交于 2020-12-13 03:04:38
问题 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);

Node Js: Redis job is not completing after finish its task

孤街醉人 提交于 2020-12-13 03:03:33
问题 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);

Node Js: Redis job is not completing after finish its task

别等时光非礼了梦想. 提交于 2020-12-13 03:01:07
问题 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);