File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
java/src/org/openqa/selenium/grid/node/docker Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,13 @@ public class DockerFlags implements HasRoles {
5656
5757 @ Parameter (
5858 names = {"--docker-server-start-timeout" },
59- description = "Max time (in seconds) to wait for the server to successfully start up, before cancelling the process." )
60- @ ConfigValue (section = DockerOptions .DOCKER_SECTION , name = "server-start-timeout" , example = "55" )
59+ description =
60+ "Max time (in seconds) to wait for the server to successfully start up, before cancelling"
61+ + " the process." )
62+ @ ConfigValue (
63+ section = DockerOptions .DOCKER_SECTION ,
64+ name = "server-start-timeout" ,
65+ example = "55" )
6166 private Integer serverStartTimeout ;
6267
6368 @ Parameter (
Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ private URI getDockerUri() {
107107 }
108108
109109 private Duration getServerStartTimeout () {
110- return Duration .ofSeconds (config .getInt (DOCKER_SECTION , "server-start-timeout" ).orElse (DEFAULT_SERVER_START_TIMEOUT ));
110+ return Duration .ofSeconds (
111+ config .getInt (DOCKER_SECTION , "server-start-timeout" ).orElse (DEFAULT_SERVER_START_TIMEOUT ));
111112 }
112113
113114 private boolean isEnabled (Docker docker ) {
You can’t perform that action at this time.
0 commit comments