diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 20:45:08 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-26 20:45:08 +1000 |
commit | 186f28516c8049ec6405d7015f996f4c5fbace27 (patch) | |
tree | 09c8a041b4f0e2c003d90bdb8edb09725ccb2dce | |
parent | Add generate:client script (diff) | |
download | server-186f28516c8049ec6405d7015f996f4c5fbace27.tar.xz |
Fix scripts/benchmark/connections.js
-rw-r--r-- | scripts/benchmark/connections.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/benchmark/connections.js b/scripts/benchmark/connections.js index ffca2628..515f76e9 100644 --- a/scripts/benchmark/connections.js +++ b/scripts/benchmark/connections.js @@ -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(); } |