fix(backend): デフォルト起動時のメインプロセスはHTTPサーバモジュールのみ読み込む (#15355)
This commit is contained in:
parent
9587fb87bf
commit
25dda5939b
@ -92,7 +92,7 @@ export async function masterMain() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bootLogger.info(
|
bootLogger.info(
|
||||||
`mode: [disableClustering: ${envOption.disableClustering}, onlyServer: ${envOption.onlyServer}, onlyQueue: ${envOption.onlyQueue}]`
|
`mode: [disableClustering: ${envOption.disableClustering}, onlyServer: ${envOption.onlyServer}, onlyQueue: ${envOption.onlyQueue}]`,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!envOption.disableClustering) {
|
if (!envOption.disableClustering) {
|
||||||
@ -107,7 +107,6 @@ export async function masterMain() {
|
|||||||
await jobQueue();
|
await jobQueue();
|
||||||
} else {
|
} else {
|
||||||
await server();
|
await server();
|
||||||
await jobQueue();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await spawnWorkers(config.clusterLimit);
|
await spawnWorkers(config.clusterLimit);
|
||||||
|
Loading…
Reference in New Issue
Block a user