Skip to content

Commit ed632c2

Browse files
authored
[java] Increase execution timeout of SM in Java from 10 to 120 seconds (#12631)
[java] Increase execution timeout from 10 to 120 seconds
1 parent b7c297e commit ed632c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/manager/SeleniumManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private static Result runCommand(Path binary, List<String> arguments) {
111111
CommandLine command =
112112
new CommandLine(binary.toAbsolutePath().toString(), arguments.toArray(new String[0]));
113113
command.executeAsync();
114-
command.waitFor(10000); // A generous timeout
114+
command.waitFor(120000); // TODO: make this configurable
115115
if (command.isRunning()) {
116116
LOG.warning("Selenium Manager did not exit");
117117
}

0 commit comments

Comments
 (0)