File tree 1 file changed +2
-2
lines changed
core/src/test/java/org/elasticsearch/cluster/routing
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ public class RoutingTableTests extends ESAllocationTestCase {
50
50
private int totalNumberOfShards ;
51
51
private final static Settings DEFAULT_SETTINGS = Settings .builder ().put (IndexMetaData .SETTING_VERSION_CREATED , Version .CURRENT ).build ();
52
52
private final AllocationService ALLOCATION_SERVICE = createAllocationService (settingsBuilder ()
53
- .put ("cluster.routing.allocation.node_concurrent_recoveries" , 10 )
54
- .put ("cluster.routing.allocation.node_initial_primaries_recoveries" , 10 )
53
+ .put ("cluster.routing.allocation.node_concurrent_recoveries" , Integer . MAX_VALUE ) // don't limit recoveries
54
+ .put ("cluster.routing.allocation.node_initial_primaries_recoveries" , Integer . MAX_VALUE )
55
55
.build ());
56
56
private ClusterState clusterState ;
57
57
You can’t perform that action at this time.
0 commit comments