schema: Add upgrade path from 4.17.2.0 same as 4.17.1.0 (#6965)

There's no DB upgrade path b/w 4.17.1.0 and 4.17.2.0, this adds the
same upgrade path of 4.17.1.0 when source version is 4.17.2.0.

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2022-12-12 12:38:57 +05:30 committed by GitHub
parent ffe2fa51d5
commit 44e13900e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -211,6 +211,7 @@ public class DatabaseUpgradeChecker implements SystemIntegrityChecker {
.next("4.17.0.0", new Upgrade41700to41710())
.next("4.17.0.1", new Upgrade41700to41710())
.next("4.17.1.0", new Upgrade41710to41800())
.next("4.17.2.0", new Upgrade41710to41800())
.build();
}