diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-07 10:51:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-07 10:51:24 +0900 |
| commit | cef8aa5e7a38aa8c09762385ccb86c24b524074e (patch) | |
| tree | 3f0a15452c4740eb47632aa815a8dfc1ccf11775 /src | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-cef8aa5e7a38aa8c09762385ccb86c24b524074e.tar.gz sharkey-cef8aa5e7a38aa8c09762385ccb86c24b524074e.tar.bz2 sharkey-cef8aa5e7a38aa8c09762385ccb86c24b524074e.zip | |
APのジョブキュー無効化
Diffstat (limited to 'src')
| -rw-r--r-- | src/argv.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/argv.ts b/src/argv.ts index c13c538890..af50d6a042 100644 --- a/src/argv.ts +++ b/src/argv.ts @@ -14,7 +14,7 @@ program .option('--color', 'This option is a dummy for some external program\'s (e.g. forever) issue.') .parse(process.argv); -if (process.env.MK_DISABLE_AP_QUEUE) program.disableApQueue = true; +/*if (process.env.MK_DISABLE_AP_QUEUE)*/ program.disableApQueue = true; if (process.env.MK_DISABLE_QUEUE) program.disableQueue = true; if (process.env.MK_ONLY_QUEUE) program.onlyQueue = true; |