Do a no-op when upgrading version

This commit is contained in:
Clément Renault
2025-11-24 10:43:27 +01:00
parent 01cd273a52
commit 9640706c5a

View File

@@ -50,6 +50,7 @@ pub fn upgrade_index_scheduler(
(1, 24, _) => 0, (1, 24, _) => 0,
(1, 25, _) => 0, (1, 25, _) => 0,
(1, 26, _) => 0, (1, 26, _) => 0,
(1, 27, _) => 0,
(major, minor, patch) => { (major, minor, patch) => {
if major > current_major if major > current_major
|| (major == current_major && minor > current_minor) || (major == current_major && minor > current_minor)