Skip to content

Commit ec01f52

Browse files
committed
Add omitted flag to allow distributor host name to be set
1 parent 3c45da5 commit ec01f52

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

java/server/src/org/openqa/selenium/grid/distributor/config/DistributorFlags.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ public class DistributorFlags {
3838

3939
@Parameter(
4040
names = "--distributor-host",
41-
description = "Port on which the distributor is listening.")
41+
description = "Host and port on which the distributor is listening.")
4242
@ConfigValue(section = "distributor", name = "hostname")
4343
private String distributorServerHost;
4444

45+
@Parameter(
46+
names = "--distributor-hostname",
47+
description = "Host on which the distributor is listening.")
48+
@ConfigValue(section = "distributor", name = "hostname")
49+
private String distributorServerHostName;
4550
}

0 commit comments

Comments
 (0)