Skip to content

Commit

Permalink
Update IndexstatsIT to run with segrep
Browse files Browse the repository at this point in the history
Signed-off-by: Rishikesh1159 <rishireddy1159@gmail.com>
  • Loading branch information
Rishikesh1159 committed Feb 8, 2024
1 parent 2c305cb commit e6d3703
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,7 @@ public static Collection<Object[]> parameters() {
return Arrays.asList(
new Object[] { Settings.builder().put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), false).build() },
new Object[] { Settings.builder().put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), true).build() },
new Object[] {
Settings.builder()
.put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), false)
.put(CLUSTER_REPLICATION_TYPE_SETTING.getKey(), ReplicationType.SEGMENT)
.build() },
new Object[] {
Settings.builder()
.put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), true)
.put(CLUSTER_REPLICATION_TYPE_SETTING.getKey(), ReplicationType.SEGMENT)
.build() }
new Object[] { Settings.builder().put(CLUSTER_REPLICATION_TYPE_SETTING.getKey(), ReplicationType.SEGMENT).build() }
);
}

Expand Down

0 comments on commit e6d3703

Please sign in to comment.