26 lines
596 B
JavaScript
26 lines
596 B
JavaScript
import process from 'process';
|
|
import { Queue } from 'bullmq';
|
|
import redisConfig from '../config/redis.js';
|
|
import logger from '../helpers/logger.js';
|
|
|
|
const CONNECTION_REFUSED = 'ECONNREFUSED';
|
|
|
|
const redisConnection = {
|
|
connection: redisConfig,
|
|
};
|
|
|
|
const actionQueue = new Queue('action', redisConnection);
|
|
|
|
process.on('SIGTERM', async () => {
|
|
await actionQueue.close();
|
|
});
|
|
|
|
actionQueue.on('error', (err) => {
|
|
if (err.code === CONNECTION_REFUSED) {
|
|
logger.error('Make sure you have installed Redis and it is running.', err);
|
|
process.exit();
|
|
}
|
|
});
|
|
|
|
export default actionQueue;
|