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 3c45da5 commit ec01f52Copy full SHA for ec01f52
java/server/src/org/openqa/selenium/grid/distributor/config/DistributorFlags.java
@@ -38,8 +38,13 @@ public class DistributorFlags {
38
39
@Parameter(
40
names = "--distributor-host",
41
- description = "Port on which the distributor is listening.")
+ description = "Host and port on which the distributor is listening.")
42
@ConfigValue(section = "distributor", name = "hostname")
43
private String distributorServerHost;
44
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;
50
}
0 commit comments