diff options
author | 2023-07-20 21:22:13 -0700 | |
---|---|---|
committer | 2023-07-20 21:22:49 -0700 | |
commit | da298635ef23cd75ca4e418256008a8491554f0f (patch) | |
tree | 00021506eabff9c81d4961f8cd03b0ab47898ae3 /bench/websocket-server/chat-server.bun.js | |
parent | 218958dbd119b7216a1934abe55b13419e4e6ade (diff) | |
download | bun-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.js | 2 |
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; |