We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23995e0 commit d54ebd7Copy full SHA for d54ebd7
java/CHANGELOG
@@ -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
7
v3.141.0
8
========
9
java/server/src/org/openqa/selenium/grid/server/BaseServerOptions.java
@@ -58,7 +58,7 @@ public int getPort() {
58
59
public int getMaxServerThreads() {
60
int count = config.getInt("server", "max-threads")
61
- .orElse(Runtime.getRuntime().availableProcessors() * 3);
+ .orElse(200);
62
63
if (count < 0) {
64
throw new ConfigException("Maximum number of server threads cannot be less than 0: " + count);
0 commit comments