Initialize queue only if queue is enabled (#4125)

This commit is contained in:
Aya Morisawa 2019-02-04 16:41:53 +09:00 committed by syuilo
parent baf861ac79
commit 6cd41f9860
1 changed files with 20 additions and 12 deletions

View File

@ -7,7 +7,11 @@ import { program } from '../argv';
const enableQueue = config.redis != null && !program.disableQueue; const enableQueue = config.redis != null && !program.disableQueue;
const queue = new Queue('misskey', { const queue = initializeQueue();
function initializeQueue() {
if (enableQueue) {
return new Queue('misskey', {
redis: { redis: {
port: config.redis.port, port: config.redis.port,
host: config.redis.host, host: config.redis.host,
@ -19,7 +23,11 @@ const queue = new Queue('misskey', {
getEvents: false, getEvents: false,
sendEvents: false, sendEvents: false,
storeJobs: false storeJobs: false
}); });
} else {
return null;
}
}
export function createHttpJob(data: any) { export function createHttpJob(data: any) {
if (enableQueue) { if (enableQueue) {