File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -269,9 +269,6 @@ tests:
269
269
- class : org.elasticsearch.threadpool.SimpleThreadPoolIT
270
270
method : testThreadPoolMetrics
271
271
issue : https://github.com/elastic/elasticsearch/issues/108320
272
- - class : org.elasticsearch.xpack.esql.plugin.ClusterRequestTests
273
- method : testFallbackIndicesOptions
274
- issue : https://github.com/elastic/elasticsearch/issues/117937
275
272
- class : org.elasticsearch.gradle.internal.info.BuildParameterExtensionSpec
276
273
method : getBwcVersionsProvider is cached anc concurrently accessible
277
274
issue : https://github.com/elastic/elasticsearch/issues/119172
Original file line number Diff line number Diff line change @@ -156,15 +156,14 @@ protected ClusterComputeRequest mutateInstance(ClusterComputeRequest in) throws
156
156
157
157
public void testFallbackIndicesOptions () throws Exception {
158
158
ClusterComputeRequest request = createTestInstance ();
159
- var version = TransportVersionUtils .randomVersionBetween (
159
+ var oldVersion = TransportVersionUtils .randomVersionBetween (
160
160
random (),
161
161
TransportVersions .V_8_14_0 ,
162
162
TransportVersionUtils .getPreviousVersion (TransportVersions .ESQL_ORIGINAL_INDICES )
163
163
);
164
- ClusterComputeRequest cloned = copyInstance (request , version );
164
+ ClusterComputeRequest cloned = copyInstance (request , oldVersion );
165
165
assertThat (cloned .clusterAlias (), equalTo (request .clusterAlias ()));
166
166
assertThat (cloned .sessionId (), equalTo (request .sessionId ()));
167
- assertThat (cloned .configuration (), equalTo (request .configuration ()));
168
167
RemoteClusterPlan plan = cloned .remoteClusterPlan ();
169
168
assertThat (plan .plan (), equalTo (request .remoteClusterPlan ().plan ()));
170
169
assertThat (plan .targetIndices (), equalTo (request .remoteClusterPlan ().targetIndices ()));
You can’t perform that action at this time.
0 commit comments