nizhikov commented on code in PR #12081: URL: https://github.com/apache/ignite/pull/12081#discussion_r2135561050
########## modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/filename/NodeFileTree.java: ########## Review Comment: Done. ########## modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/filename/FileTreeUtils.java: ########## @@ -61,6 +63,20 @@ public static void removeTmpSnapshotFiles(SnapshotFileTree sft, boolean err, Ign removeTmpDir(tmpDrStorage.getParentFile(), err, log); } + /** + * @param ccfg Cache configuration. + * @param part Partition. + * @return Storage path from config for partition. + */ + public static @Nullable String partitionStorage(CacheConfiguration<?, ?> ccfg, int part) { + String[] csp = ccfg.getStoragePaths(); + + if (csp == null) Review Comment: Done -- 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