Clean all the cache during update to 3.4

This commit is contained in:
Andrii Shvaika 2022-05-10 16:58:46 +03:00
parent 274cfa986d
commit a1596ac647

View File

@ -68,6 +68,10 @@ public class DefaultCacheCleanupService implements CacheCleanupService {
log.info("Clear cache to upgrade from version 3.3.3 to 3.3.4 ...");
clearAll();
break;
case "3.3.4":
log.info("Clear cache to upgrade from version 3.3.4 to 3.4.0 ...");
clearAll();
break;
default:
//Do nothing, since cache cleanup is optional.
}