Skip to content

Commit d54ebd7

Browse files
committed
Bump the number of jetty threads to 200
1 parent 23995e0 commit d54ebd7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

java/CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v3.141.5
2+
========
3+
4+
* Default the number of threads assigned to the server to 200,
5+
which is what it was in 3.13.0
6+
17
v3.141.0
28
========
39

java/server/src/org/openqa/selenium/grid/server/BaseServerOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public int getPort() {
5858

5959
public int getMaxServerThreads() {
6060
int count = config.getInt("server", "max-threads")
61-
.orElse(Runtime.getRuntime().availableProcessors() * 3);
61+
.orElse(200);
6262

6363
if (count < 0) {
6464
throw new ConfigException("Maximum number of server threads cannot be less than 0: " + count);

0 commit comments

Comments
 (0)