File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,6 @@ tests:
125125- class : org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
126126 method : test {p0=search.highlight/50_synthetic_source/text multi unified from vectors}
127127 issue : https://github.com/elastic/elasticsearch/issues/117815
128- - class : org.elasticsearch.xpack.esql.plugin.ClusterRequestTests
129- method : testFallbackIndicesOptions
130- issue : https://github.com/elastic/elasticsearch/issues/117937
131128- class : org.elasticsearch.xpack.ml.integration.RegressionIT
132129 method : testTwoJobsWithSameRandomizeSeedUseSameTrainingSet
133130 issue : https://github.com/elastic/elasticsearch/issues/117805
Original file line number Diff line number Diff line change @@ -155,11 +155,14 @@ protected ClusterComputeRequest mutateInstance(ClusterComputeRequest in) throws
155155
156156 public void testFallbackIndicesOptions () throws Exception {
157157 ClusterComputeRequest request = createTestInstance ();
158- var version = TransportVersionUtils .randomVersionBetween (random (), TransportVersions .V_8_14_0 , TransportVersions .V_8_16_0 );
159- ClusterComputeRequest cloned = copyInstance (request , version );
158+ var oldVersion = TransportVersionUtils .randomVersionBetween (
159+ random (),
160+ TransportVersions .V_8_14_0 ,
161+ TransportVersionUtils .getPreviousVersion (TransportVersions .V_8_16_0 )
162+ );
163+ ClusterComputeRequest cloned = copyInstance (request , oldVersion );
160164 assertThat (cloned .clusterAlias (), equalTo (request .clusterAlias ()));
161165 assertThat (cloned .sessionId (), equalTo (request .sessionId ()));
162- assertThat (cloned .configuration (), equalTo (request .configuration ()));
163166 RemoteClusterPlan plan = cloned .remoteClusterPlan ();
164167 assertThat (plan .plan (), equalTo (request .remoteClusterPlan ().plan ()));
165168 assertThat (plan .targetIndices (), equalTo (request .remoteClusterPlan ().targetIndices ()));
You can’t perform that action at this time.
0 commit comments