Skip to content

Commit 4bd9de2

Browse files
Fix BwC Tests looking for UUID Pre 6.4 (#32158) (#32169)
* UUID field was added for #31791 and only went into 6.4 and 7.0 * Fixes #32119
1 parent 2d3c0db commit 4bd9de2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

qa/mixed-cluster/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ for (Version version : bwcVersions.wireCompatible) {
6060
tasks.getByName("${baseName}#mixedClusterTestRunner").configure {
6161
/* To support taking index snapshots, we have to set path.repo setting */
6262
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo")
63-
systemProperty 'tests.rest.blacklist', ['indices.stats/10_index/Index - all'].join(',')
6463
}
6564
}
6665

rest-api-spec/src/main/resources/rest-api-spec/test/indices.stats/10_index.yml

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ setup:
4141

4242
---
4343
"Index - all":
44+
- skip:
45+
version: " - 6.3.99"
46+
reason: "uuid is only available from 6.4.0 on"
47+
4448
- do:
4549
indices.stats: { index: _all }
4650

0 commit comments

Comments
 (0)