aboutsummaryrefslogtreecommitdiff
path: root/bench/websocket-server/chat-server.bun.js
diff options
context:
space:
mode:
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;