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
27 changes: 0 additions & 27 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,33 +449,6 @@ tests:
- class: org.elasticsearch.aggregations.bucket.AggregationReductionCircuitBreakingIT
method: testCBTrippingOnReduction
issue: https://github.com/elastic/elasticsearch/issues/134902
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testEmptyShard {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135951
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testSearch {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135927
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testPersianAnalyzerBWC {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135930
- class: org.elasticsearch.upgrades.FullClusterRestartDownsampleIT
method: testRollupIndex {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135906
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testSystemIndexMetadataIsUpgraded {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135923
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testNewReplicas {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135956
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testPeerRecoveryRetentionLeases {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135929
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testTurnOffTranslogRetentionAfterUpgraded {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135958
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testOperationBasedRecovery {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/135944

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

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 @@ -118,7 +118,7 @@ private static ElasticsearchCluster buildCluster() {
.apply(() -> clusterConfig)
.feature(FeatureFlag.TIME_SERIES_MODE);

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