|
18 | 18 | package org.openqa.selenium.grid.distributor.config; |
19 | 19 |
|
20 | 20 |
|
21 | | -import com.beust.jcommander.Parameter; |
22 | 21 | import com.google.auto.service.AutoService; |
| 22 | + |
| 23 | +import com.beust.jcommander.Parameter; |
| 24 | + |
23 | 25 | import org.openqa.selenium.grid.config.ConfigValue; |
24 | 26 | import org.openqa.selenium.grid.config.HasRoles; |
25 | 27 | import org.openqa.selenium.grid.config.Role; |
|
30 | 32 |
|
31 | 33 | import static org.openqa.selenium.grid.config.StandardGridRoles.DISTRIBUTOR_ROLE; |
32 | 34 | import static org.openqa.selenium.grid.distributor.config.DistributorOptions.DEFAULT_DISTRIBUTOR_IMPLEMENTATION; |
33 | | -import static org.openqa.selenium.grid.distributor.config.DistributorOptions.DEFAULT_GRID_MODEL_IMPLEMENTATION; |
34 | 35 | import static org.openqa.selenium.grid.distributor.config.DistributorOptions.DEFAULT_HEALTHCHECK_INTERVAL; |
35 | 36 | import static org.openqa.selenium.grid.distributor.config.DistributorOptions.DEFAULT_REJECT_UNSUPPORTED_CAPS; |
36 | 37 | import static org.openqa.selenium.grid.distributor.config.DistributorOptions.DEFAULT_SLOT_MATCHER; |
@@ -66,12 +67,6 @@ public class DistributorFlags implements HasRoles { |
66 | 67 | example = DEFAULT_DISTRIBUTOR_IMPLEMENTATION) |
67 | 68 | private String implementation = DEFAULT_DISTRIBUTOR_IMPLEMENTATION; |
68 | 69 |
|
69 | | - @Parameter( |
70 | | - names = {"--grid-model"}, |
71 | | - description = "Full classname of non-default grid model. This is used to store states of the all the registered Nodes.") |
72 | | - @ConfigValue(section = DISTRIBUTOR_SECTION, name = "grid-model", example = DEFAULT_GRID_MODEL_IMPLEMENTATION) |
73 | | - private String gridModel = DEFAULT_GRID_MODEL_IMPLEMENTATION; |
74 | | - |
75 | 70 | @Parameter( |
76 | 71 | names = {"--slot-matcher"}, |
77 | 72 | description = "Full classname of non-default slot matcher to use. This is used to determine whether a Node can support a particular session.") |
|
0 commit comments