Remove @UpdateForV9 annotation in FullClusterRestartIT.java (#124474)

* Remove @UpdateForV9 annotation in FullClusterRestartIT.java

* Remove UpdateForV9 import from FullClusterRestartIT.java
This commit is contained in:
Arpad Kiraly 2025-03-11 12:59:36 +01:00 committed by GitHub
parent 435d1db5b9
commit 8da3beaee6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,6 @@ import org.elasticsearch.Version;
import org.elasticsearch.client.Request; import org.elasticsearch.client.Request;
import org.elasticsearch.client.Response; import org.elasticsearch.client.Response;
import org.elasticsearch.client.ResponseException; import org.elasticsearch.client.ResponseException;
import org.elasticsearch.core.UpdateForV9;
import org.elasticsearch.test.cluster.ElasticsearchCluster; import org.elasticsearch.test.cluster.ElasticsearchCluster;
import org.elasticsearch.test.cluster.local.distribution.DistributionType; import org.elasticsearch.test.cluster.local.distribution.DistributionType;
import org.elasticsearch.test.rest.ObjectPath; 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.elasticsearch.Version.V_8_12_0;
import static org.hamcrest.Matchers.greaterThanOrEqualTo; 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 { public class FullClusterRestartIT extends ParameterizedFullClusterRestartTestCase {
// DSL was introduced with version 8.12.0 of ES. // DSL was introduced with version 8.12.0 of ES.
private static final Version DSL_DEFAULT_RETENTION_VERSION = V_8_12_0; private static final Version DSL_DEFAULT_RETENTION_VERSION = V_8_12_0;