Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion qa/retention-lease-bwc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ esplugin {
integTest.enabled = false

task bwcTest {
description = 'runs retention lease backwards compatability tests'
description = 'runs retention lease backwards compatibility tests'
group = 'verification'
}

Expand All @@ -39,6 +39,10 @@ for (Version version : bwcVersions.wireCompatible) {
// versions before 6.5.0 do not support soft deletes
continue
}
if (version.onOrAfter("6.7.0")) {
// we are known to be compatible with these versions
continue
}

final String baseName = "v${version}"

Expand Down