Skip to content

Commit

Permalink
default hub host address to 0.0.0.0 when not specified
Browse files Browse the repository at this point in the history
  • Loading branch information
mach6 committed May 17, 2018
1 parent 1a99e21 commit 6404eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/server/src/org/openqa/grid/web/Hub.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Hub(GridHubConfiguration gridHubConfiguration) {
}

if (config.host == null) {
updateHostToNonLoopBackAddressOfThisMachine();
config.host = "0.0.0.0"; //default to all adapters
}

if (config.port == null) {
Expand Down

0 comments on commit 6404eef

Please sign in to comment.