Add --disable-queue option

This commit is contained in:
syuilo 2019-02-04 13:37:50 +09:00
parent d3b3426ebe
commit 0ae1190c08
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 3 additions and 1 deletions

View file

@ -5,6 +5,7 @@ program
.version(pkg.version)
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
.option('--disable-clustering', 'Disable clustering')
.option('--disable-queue', 'Disable job queue')
.option('--quiet', 'Suppress all logs')
.option('--verbose', 'Enable all logs')
.option('--slow', 'Delay all requests (for debbuging)')

View file

@ -3,8 +3,9 @@ import config from '../config';
import http from './processors/http';
import { ILocalUser } from '../models/user';
import Logger from '../misc/logger';
import { program } from '../argv';
const enableQueue = config.redis != null;
const enableQueue = config.redis != null && !program.disableQueue;
const queue = new Queue('misskey', {
redis: {