Skip to content

Commit 00b54f9

Browse files
Fix build
1 parent 5b4f25f commit 00b54f9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/changelog/119088.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type: breaking
55
issues: []
66
breaking:
77
title: Remove index settings deprecated in Elasticsearch 7.x and not used in 8.x
8-
area: Infra/Core
8+
area: Index setting
99
details: >-
1010
Remove settings `index.rollup.source.uuid` and `index.rollup.source.name` (replaced by `index.downsample.source.uuid` and `index.downsample.source.name`),
1111
`index.indexing.slowlog.level` and `index.search.slowlog.level` (replaced by `index.indexing.slowlog.threshold.query.{level}` and `index.search.slowlog.threshold.query.{level}`),

x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/action/TransportResumeFollowActionTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,7 @@ public void testDynamicIndexSettingsAreClassified() {
338338
replicatedSettings.add(SourceFieldMapper.INDEX_MAPPER_SOURCE_MODE_SETTING);
339339

340340
for (Setting<?> setting : IndexScopedSettings.BUILT_IN_INDEX_SETTINGS) {
341-
// removed settings have no effect, they are only there for BWC
342-
if (setting.isDynamic() && setting.isDeprecatedAndRemoved() == false) {
341+
if (setting.isDynamic()) {
343342
boolean notReplicated = TransportResumeFollowAction.NON_REPLICATED_SETTINGS.contains(setting);
344343
boolean replicated = replicatedSettings.contains(setting);
345344
assertThat(

0 commit comments

Comments
 (0)