Skip to content

Commit ebd0998

Browse files
committed
Config settings do not use -- in their names
1 parent 4798b00 commit ebd0998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class DistributorFlags implements HasRoles {
9494
@Parameter(description = "Allow the Distributor to reject a request immediately if the Grid does not support the requested capability." +
9595
"Rejecting requests immediately is suitable for Grid set up that does not spin up Nodes on demand.",
9696
names = "--reject-unsupported-caps", arity = 1)
97-
@ConfigValue(section = DISTRIBUTOR_SECTION, name = "--reject-unsupported-caps", example = "true")
97+
@ConfigValue(section = DISTRIBUTOR_SECTION, name = "reject-unsupported-caps", example = "true")
9898
private boolean rejectUnsupportedCaps = DEFAULT_REJECT_UNSUPPORTED_CAPS;
9999

100100
@Override

0 commit comments

Comments
 (0)