Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,6 @@ tests:
- class: org.elasticsearch.gradle.LoggedExecFuncTest
method: failed tasks output logged to console when spooling true
issue: https://github.com/elastic/elasticsearch/issues/119509
- class: org.elasticsearch.upgrades.FullClusterRestartDownsampleIT
method: testRollupIndex {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135906

# Examples:
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private static ElasticsearchCluster buildCluster() {
.feature(FeatureFlag.TIME_SERIES_MODE)
.feature(FeatureFlag.FAILURE_STORE_ENABLED);

if (oldVersion.before(Version.fromString("8.18.0"))) {
if (oldVersion.before(Version.fromString("8.18.0")) || isOldClusterDetachedVersion()) {
cluster.jvmArg("-da:org.elasticsearch.index.mapper.DocumentMapper");
cluster.jvmArg("-da:org.elasticsearch.index.mapper.MapperService");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private static ElasticsearchCluster buildCluster() {
.feature(FeatureFlag.TIME_SERIES_MODE)
.feature(FeatureFlag.FAILURE_STORE_ENABLED);

if (oldVersion.before(Version.fromString("8.18.0"))) {
if (oldVersion.before(Version.fromString("8.18.0")) || isOldClusterDetachedVersion()) {
cluster.jvmArg("-da:org.elasticsearch.index.mapper.DocumentMapper");
cluster.jvmArg("-da:org.elasticsearch.index.mapper.MapperService");
}
Expand Down