anton-vinogradov commented on code in PR #12081: URL: https://github.com/apache/ignite/pull/12081#discussion_r2116110607
########## modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/file/FilePageStoreManager.java: ########## @@ -549,7 +549,16 @@ private CacheStoreHolder initDir( DataRegion dataRegion ) throws IgniteCheckedException { try { - boolean dirExisted = checkAndInitCacheWorkDir(cft); + boolean dirExisted = false; + + for (File storage : cft.storages()) { + if (storage.exists()) { + dirExisted = true; + break; Review Comment: Please rename to `anyDirExisted` or similar -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org