tihom88 commented on code in PR #1123:
URL: https://github.com/apache/jackrabbit-oak/pull/1123#discussion_r1335501707
##########
oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/flatfile/FlatFileStore.java:
##########
@@ -54,8 +57,18 @@ public FlatFileStore(BlobStore blobStore, File storeFile,
NodeStateEntryReader e
this.entryReader = entryReader;
this.preferredPathElements = preferredPathElements;
this.algorithm = algorithm;
+ this.metadataFile = metadataFile;
+ }
+
+ public FlatFileStore(BlobStore blobStore, File storeFile,
NodeStateEntryReader entryReader, Set<String> preferredPathElements,
Compression algorithm) {
+ this(blobStore, storeFile, null, entryReader, preferredPathElements,
algorithm);
+ }
+
+ public String getStorePath() {
+ return storeFile.getParentFile().getAbsolutePath();
}
+ @Deprecated
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]