Update cache cleanup service

This commit is contained in:
ViacheslavKlimov 2024-11-27 18:10:11 +02:00
parent eedbaeddaf
commit 28cf8c8868

View File

@ -65,6 +65,10 @@ public class DefaultCacheCleanupService implements CacheCleanupService {
log.info("Clearing cache to upgrade from version 3.7.0 to 3.8.0");
clearAll();
break;
case "3.8.1":
log.info("Clearing cache to upgrade from version 3.8.1 to 3.9.0");
clearAll();
break;
default:
//Do nothing, since cache cleanup is optional.
}