Skip to content

Commit

Permalink
[java] Remove hardcoded timeout of 120 seconds when executing SM
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Aug 30, 2023
1 parent ed632c2 commit 78981db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/manager/SeleniumManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private static Result runCommand(Path binary, List<String> arguments) {
CommandLine command =
new CommandLine(binary.toAbsolutePath().toString(), arguments.toArray(new String[0]));
command.executeAsync();
command.waitFor(120000); // TODO: make this configurable
command.waitFor();
if (command.isRunning()) {
LOG.warning("Selenium Manager did not exit");
}
Expand Down

0 comments on commit 78981db

Please sign in to comment.