Skip to content

Commit 5ae7453

Browse files
author
Hendrik Muhs
authored
[7.6][Transform] blacklist continuous transform tests if upgraded from 7.2.x (#48344)
blacklist continuous transform tests if upgraded from 7.2.x fixes #48336
1 parent 60d8ecb commit 5ae7453

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x-pack/qa/rolling-upgrade/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,11 @@ for (Version bwcVersion : bwcVersions.wireCompatible) {
197197
// Dataframe transforms were not added until 7.2.0
198198
if (bwcVersion.before('7.2.0')) {
199199
toBlackList << 'upgraded_cluster/80_data_frame_jobs_crud/Get start, stop, and delete old cluster batch data frame transforms'
200+
}
201+
// continuous Dataframe transforms were not added until 7.3.0
202+
if (bwcVersion.before('7.3.0')) {
200203
toBlackList << 'upgraded_cluster/80_data_frame_jobs_crud/Test GET, stop, delete, old continuous transforms'
201204
}
202-
203205
// transform in mixed cluster is effectively disabled till 7.4, see gh#48019
204206
if (bwcVersion.before('7.4.0')) {
205207
toBlackList << 'upgraded_cluster/80_data_frame_jobs_crud/Get start, stop mixed cluster batch data frame transforms'

0 commit comments

Comments
 (0)