From 3623259fd96675ff4b7daace1614396c0755de09 Mon Sep 17 00:00:00 2001 From: carlosdelest Date: Thu, 19 Dec 2024 09:20:42 +0100 Subject: [PATCH] Skips synonym test in mixed cluster bwc tests instead of YAML rest compat --- muted-tests.yml | 3 --- qa/mixed-cluster/build.gradle | 3 +++ rest-api-spec/build.gradle | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 12f1fc510a332..fb9f6e0a7385e 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -296,9 +296,6 @@ tests: - class: org.elasticsearch.xpack.security.authc.AuthenticationServiceTests method: testInvalidToken issue: https://github.com/elastic/elasticsearch/issues/119019 -- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT - method: test {p0=synonyms/90_synonyms_reloading_for_synset/Reload analyzers for specific synonym set} - issue: https://github.com/elastic/elasticsearch/issues/116777 - class: org.elasticsearch.xpack.security.authc.ldap.ActiveDirectoryRunAsIT issue: https://github.com/elastic/elasticsearch/issues/115727 diff --git a/qa/mixed-cluster/build.gradle b/qa/mixed-cluster/build.gradle index 28bcac9f0242d..8dd5031c07822 100644 --- a/qa/mixed-cluster/build.gradle +++ b/qa/mixed-cluster/build.gradle @@ -70,6 +70,9 @@ excludeList.add('aggregations/percentiles_hdr_metric/Negative values test') // sync_id is removed in 9.0 excludeList.add("cat.shards/10_basic/Help") +// Can't work until auto-expand replicas is 0-1 for synonyms index +excludeList.add("synonyms/90_synonyms_reloading_for_synset/Reload analyzers for specific synonym set") + def clusterPath = getPath() buildParams.bwcVersions.withWireCompatible { bwcVersion, baseName -> diff --git a/rest-api-spec/build.gradle b/rest-api-spec/build.gradle index f23b5460f7d53..c795b68ef5893 100644 --- a/rest-api-spec/build.gradle +++ b/rest-api-spec/build.gradle @@ -69,6 +69,5 @@ tasks.named("yamlRestCompatTestTransform").configure ({ task -> task.skipTest("search/520_fetch_fields/fetch _seq_no via fields", "error code is changed from 5xx to 400 in 9.0") task.skipTest("search.vectors/41_knn_search_bbq_hnsw/Test knn search", "Scoring has changed in latest versions") task.skipTest("search.vectors/42_knn_search_bbq_flat/Test knn search", "Scoring has changed in latest versions") - task.skipTest("synonyms/90_synonyms_reloading_for_synset/Reload analyzers for specific synonym set", "Can't work until auto-expand replicas is 0-1 for synonyms index") task.skipTest("search/90_search_after/_shard_doc sort", "restriction has been lifted in latest versions") })