fixup: make cluster limit into a per-mode warning rather than error

This commit is contained in:
Chloe Kudryavtsev 2022-11-26 13:28:39 +01:00
parent 48a60b03ea
commit 6600f6e52e

View file

@ -141,12 +141,12 @@ async function connectDb(): Promise<void> {
async function spawnWorkers(clusterLimits: Required<Config['clusterLimits']>): Promise<void> { async function spawnWorkers(clusterLimits: Required<Config['clusterLimits']>): Promise<void> {
const modes = ['web', 'queue']; const modes = ['web', 'queue'];
const total = modes.reduce((acc, mode) => acc + clusterLimits[mode], 0); const cpus = os.cpus().length;
if (total > os.cpus().length) { for (const mode of modes.filter(mode => clusterLimits[mode] > cpus)) {
bootLogger.error(`configuration error: cluster limits total (${total}) must not exceed number of cores (${os.cpus().length})`); bootLogger.warn(`configuration warning: cluster limit for ${mode} exceeds number of cores (${cpus})`);
process.exit(78);
} }
const total = modes.reduce((acc, mode) => acc + clusterLimits[mode], 0);
const workers = new Array(total); const workers = new Array(total);
workers.fill('web', 0, clusterLimits.web); workers.fill('web', 0, clusterLimits.web);
workers.fill('queue', clusterLimits.web); workers.fill('queue', clusterLimits.web);