Skip to content

Commit 78981db

Browse files
committed
[java] Remove hardcoded timeout of 120 seconds when executing SM
1 parent ed632c2 commit 78981db

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(120000); // TODO: make this configurable
114+
command.waitFor();
115115
if (command.isRunning()) {
116116
LOG.warning("Selenium Manager did not exit");
117117
}

0 commit comments

Comments
 (0)