Merge pull request #5817 from meilisearch/fix-dumpless-upgrade

fix the dumpless upgrade again
This commit is contained in:
Tamo
2025-08-11 15:29:54 +00:00
committed by GitHub

View File

@ -39,6 +39,7 @@ pub fn upgrade_index_scheduler(
(1, 13, _) => 0,
(1, 14, _) => 0,
(1, 15, _) => 0,
(1, 16, _) => 0,
(major, minor, patch) => {
if major > current_major
|| (major == current_major && minor > current_minor)