1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00

Fix scripts/benchmark/connections.js

This commit is contained in:
Madeline 2022-09-26 20:45:08 +10:00
parent 4ca5a4d0b7
commit 186f28516c

View File

@ -8,7 +8,7 @@ var cores = 1;
try {
cores = Number(process.env.THREADS) || os.cpus().length;
} catch {
console.log("[Bundle] Failed to get thread count! Using 1...")
console.log("[Bundle] Failed to get thread count! Using 1...");
}
if (!token) {
@ -17,7 +17,7 @@ if (!token) {
}
if (cluster.isMaster) {
for (let i = 0; i < threads; i++) {
for (let i = 0; i < cores; i++) {
cluster.fork();
}