Fix BwC Tests looking for UUID Pre 6.4 (#32158)
* UUID field was added for #31791 and only went into 6.4 and 7.0 * Fixes #32119
This commit is contained in:
parent
380b45b965
commit
6de1f96cad
|
@ -57,7 +57,6 @@ for (Version version : bwcVersions.wireCompatible) {
|
|||
tasks.getByName("${baseName}#mixedClusterTestRunner").configure {
|
||||
/* To support taking index snapshots, we have to set path.repo setting */
|
||||
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo")
|
||||
systemProperty 'tests.rest.blacklist', ['indices.stats/10_index/Index - all'].join(',')
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -41,6 +41,10 @@ setup:
|
|||
|
||||
---
|
||||
"Index - all":
|
||||
- skip:
|
||||
version: " - 6.3.99"
|
||||
reason: "uuid is only available from 6.4.0 on"
|
||||
|
||||
- do:
|
||||
indices.stats: { index: _all }
|
||||
|
||||
|
|
Loading…
Reference in New Issue