Update disable assertion jvm args from bwc/mixed cluster setups. (#125074)

Remove `-da:org.elasticsearch.index.mapper.DocumentMapper` and `-da:org.elasticsearch.index.mapper.MapperService` from mixed cluster/bwc cluster setups. Given that #122606 is now backported to the 8.18 branch.
This commit is contained in:
Martijn van Groningen 2025-03-19 08:10:50 +01:00 committed by GitHub
parent d9e751602d
commit ae16016290
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View file

@ -30,7 +30,7 @@ public class MixedClusterDownsampleRestIT extends ESClientYamlSuiteTestCase {
.setting("xpack.security.enabled", "false")
.setting("xpack.license.self_generated.type", "trial");
if (oldVersion.before(Version.fromString("9.1.0"))) {
if (oldVersion.before(Version.fromString("8.18.0"))) {
cluster.jvmArg("-da:org.elasticsearch.index.mapper.DocumentMapper");
cluster.jvmArg("-da:org.elasticsearch.index.mapper.MapperService");
}