shekhars-li commented on code in PR #1676: URL: https://github.com/apache/samza/pull/1676#discussion_r1287909576
########## samza-core/src/main/java/org/apache/samza/storage/blobstore/util/BlobStoreUtil.java: ########## @@ -232,6 +288,15 @@ public CompletionStage<Void> deleteSnapshotIndexBlob(String snapshotIndexBlobId, * @return A future that completes when all the async downloads completes */ public CompletableFuture<Void> restoreDir(File baseDir, DirIndex dirIndex, Metadata metadata) { + return restoreDir(baseDir, dirIndex, metadata, false); + } + + /** + * Non-blocking restore of a {@link SnapshotIndex} to local store by downloading all the files and sub-dirs associated + * with this remote snapshot. getDeletedFiles flag sets whether to attempt a get for deletedFiles or not. + * @return A future that completes when all the async downloads completes + */ + public CompletableFuture<Void> restoreDir(File baseDir, DirIndex dirIndex, Metadata metadata, Boolean getDeletedFiles) { Review Comment: Updated/removed. Thanks -- 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: commits-unsubscr...@samza.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org