Skip to content

Commit

Permalink
[Transform] Repair TransformSurvivesUpgradeIT for 7.16->7.16/17 upgra…
Browse files Browse the repository at this point in the history
…de (#81571)

don't check for audit template after 7.16

fixes #79230
  • Loading branch information
Hendrik Muhs committed Dec 9, 2021
1 parent d85dd2f commit f4b7127
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public class TransformSurvivesUpgradeIT extends AbstractUpgradeTestCase {

@Before
public void waitForTemplates() throws Exception {
// no transform before 7.2
if (UPGRADE_FROM_VERSION.before(Version.V_7_2_0)) {
// no transform before 7.2, after 7.16 this check isn't required anymore
if (UPGRADE_FROM_VERSION.before(Version.V_7_2_0) || UPGRADE_FROM_VERSION.onOrAfter(Version.V_7_16_0)) {
return;
}

Expand Down

0 comments on commit f4b7127

Please sign in to comment.