Add a no-op when upgrading the index scheduler

This commit is contained in:
Kerollmops
2025-10-13 10:28:31 +02:00
parent 0d05c2ad6e
commit 0203adb9cb

View File

@@ -46,6 +46,7 @@ pub fn upgrade_index_scheduler(
(1, 20, _) => 0,
(1, 21, _) => 0,
(1, 22, _) => 0,
(1, 23, _) => 0,
(major, minor, patch) => {
if major > current_major
|| (major == current_major && minor > current_minor)