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 1dbfd6d commit 7544113Copy full SHA for 7544113
java/src/org/openqa/selenium/grid/node/httpd/NodeServer.java
@@ -219,9 +219,10 @@ public NettyServer start() {
219
.onFailure(
220
event -> {
221
LOG.severe(
222
- String.format(
223
- "Registration event failed after period of %s seconds. Node will not attempt to register again.",
224
- nodeOptions.getRegisterPeriod().getSeconds()));
+ String.format(
+ "Registration event failed after period of %s seconds. Node will not"
+ + " attempt to register again.",
225
+ nodeOptions.getRegisterPeriod().getSeconds()));
226
if (nodeOptions.getRegisterLoopBack()) {
227
LOG.severe("Shutting down");
228
System.exit(1);
0 commit comments