wernerdv commented on code in PR #12094: URL: https://github.com/apache/ignite/pull/12094#discussion_r2106651610
########## modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/defragmentation/DefragmentationFileUtils.java: ########## @@ -198,34 +169,34 @@ public static boolean skipAlreadyDefragmentedPartition(File workDir, int grpId, * Deletion of the marker must be done outside of defragmentation mode to prevent cache groups to be defragmentated * several times in case of failures. * - * @param workDir Cache group working directory. + * @param cft Cache file tree. * @param log Logger to write messages. * @throws IgniteException If {@link IOException} occurred. * - * @see DefragmentationFileUtils#writeDefragmentationCompletionMarker(FileIOFactory, File, IgniteLogger) + * @see DefragmentationFileUtils#writeDefragmentationCompletionMarker(FileIOFactory, CacheFileTree, IgniteLogger) */ - public static void batchRenameDefragmentedCacheGroupPartitions(File workDir, IgniteLogger log) throws IgniteException { - File completionMarkerFile = defragmentationCompletionMarkerFile(workDir); + public static void batchRenameDefragmentedCacheGroupPartitions(CacheFileTree cft, IgniteLogger log) throws IgniteException { Review Comment: the `log` argument is not used -- 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