Skip to content

Commit f0f1869

Browse files
authored
[8.x] Remove index.merge.policy.max_merge_at_once_explicit deprecation (#124792)
This setting is not getting removed in ES 9.0, so its usage should not generate a critical deprecation warning. This is an index setting and should have been marked as `IndexSettingDeprecatedInV8AndRemovedInV9`, but we can't change that in 8.x and will mark it as `IndexSettingDeprecatedInV9AndRemovedInV10` in 9.0 See #90264 See ES-11224
1 parent 4951289 commit f0f1869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/index/MergePolicyConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ MergePolicy getMergePolicy(MergePolicyConfig config, boolean isTimeBasedIndex) {
236236
"index.merge.policy.max_merge_at_once_explicit",
237237
30,
238238
2,
239-
Property.Deprecated, // When removing in 9.0 follow the approach of IndexSettingDeprecatedInV7AndRemovedInV8
239+
// When removing in 9.0 follow the approach of IndexSettingDeprecatedInV7AndRemovedInV8
240240
Property.Dynamic,
241241
Property.IndexScope
242242
);

0 commit comments

Comments
 (0)