Don't limit recoveries in RoutingTableTests
This commit is contained in:
parent
24ab66c694
commit
387bdbd322
|
@ -50,8 +50,8 @@ public class RoutingTableTests extends ESAllocationTestCase {
|
|||
private int totalNumberOfShards;
|
||||
private final static Settings DEFAULT_SETTINGS = Settings.builder().put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT).build();
|
||||
private final AllocationService ALLOCATION_SERVICE = createAllocationService(settingsBuilder()
|
||||
.put("cluster.routing.allocation.node_concurrent_recoveries", 10)
|
||||
.put("cluster.routing.allocation.node_initial_primaries_recoveries", 10)
|
||||
.put("cluster.routing.allocation.node_concurrent_recoveries", Integer.MAX_VALUE) // don't limit recoveries
|
||||
.put("cluster.routing.allocation.node_initial_primaries_recoveries", Integer.MAX_VALUE)
|
||||
.build());
|
||||
private ClusterState clusterState;
|
||||
|
||||
|
|
Loading…
Reference in New Issue