aboutsummaryrefslogtreecommitdiff
path: root/bench/websocket-server/chat-server.bun.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-20 21:22:13 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-07-20 21:22:49 -0700
commitda298635ef23cd75ca4e418256008a8491554f0f (patch)
tree00021506eabff9c81d4961f8cd03b0ab47898ae3 /bench/websocket-server/chat-server.bun.js
parent218958dbd119b7216a1934abe55b13419e4e6ade (diff)
downloadbun-da298635ef23cd75ca4e418256008a8491554f0f.tar.gz
bun-da298635ef23cd75ca4e418256008a8491554f0f.tar.zst
bun-da298635ef23cd75ca4e418256008a8491554f0f.zip
Bump
Diffstat (limited to 'bench/websocket-server/chat-server.bun.js')
-rw-r--r--bench/websocket-server/chat-server.bun.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/websocket-server/chat-server.bun.js b/bench/websocket-server/chat-server.bun.js
index da05179ea..fc4f8b303 100644
--- a/bench/websocket-server/chat-server.bun.js
+++ b/bench/websocket-server/chat-server.bun.js
@@ -1,5 +1,5 @@
// See ./README.md for instructions on how to run this benchmark.
-const CLIENTS_TO_WAIT_FOR = parseInt(process.env.CLIENTS_COUNT || "", 10) || 16;
+const CLIENTS_TO_WAIT_FOR = parseInt(process.env.CLIENTS_COUNT || "", 10) || 32;
var remainingClients = CLIENTS_TO_WAIT_FOR;
const COMPRESS = process.env.COMPRESS === "1";
const port = process.PORT || 4001;