From 8da3beaee60a2a77d65a420e7d81866955024cc3 Mon Sep 17 00:00:00 2001 From: Arpad Kiraly <60614093+arpadkiraly@users.noreply.github.com> Date: Tue, 11 Mar 2025 12:59:36 +0100 Subject: [PATCH] Remove @UpdateForV9 annotation in FullClusterRestartIT.java (#124474) * Remove @UpdateForV9 annotation in FullClusterRestartIT.java * Remove UpdateForV9 import from FullClusterRestartIT.java --- .../elasticsearch/xpack/application/FullClusterRestartIT.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/x-pack/plugin/ent-search/qa/full-cluster-restart/src/javaRestTest/java/org/elasticsearch/xpack/application/FullClusterRestartIT.java b/x-pack/plugin/ent-search/qa/full-cluster-restart/src/javaRestTest/java/org/elasticsearch/xpack/application/FullClusterRestartIT.java index 6d2d3c33d3e9..7bebd8fe05a5 100644 --- a/x-pack/plugin/ent-search/qa/full-cluster-restart/src/javaRestTest/java/org/elasticsearch/xpack/application/FullClusterRestartIT.java +++ b/x-pack/plugin/ent-search/qa/full-cluster-restart/src/javaRestTest/java/org/elasticsearch/xpack/application/FullClusterRestartIT.java @@ -12,7 +12,6 @@ import org.elasticsearch.Version; import org.elasticsearch.client.Request; import org.elasticsearch.client.Response; import org.elasticsearch.client.ResponseException; -import org.elasticsearch.core.UpdateForV9; import org.elasticsearch.test.cluster.ElasticsearchCluster; import org.elasticsearch.test.cluster.local.distribution.DistributionType; import org.elasticsearch.test.rest.ObjectPath; @@ -26,7 +25,6 @@ import java.util.List; import static org.elasticsearch.Version.V_8_12_0; import static org.hamcrest.Matchers.greaterThanOrEqualTo; -@UpdateForV9(owner = UpdateForV9.Owner.ENTERPRISE_SEARCH) // Investigate what needs to be added in terms of 9.0 migration testing public class FullClusterRestartIT extends ParameterizedFullClusterRestartTestCase { // DSL was introduced with version 8.12.0 of ES. private static final Version DSL_DEFAULT_RETENTION_VERSION = V_8_12_0;