Skip to content

Commit

Permalink
test change
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Singh <[email protected]>
  • Loading branch information
ashking94 committed May 17, 2024
1 parent 49053f7 commit b76342a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
@ExperimentalApi
public class RemoteStoreEnums {

private static final char REMOTE_STORE_DEDICATED_PREFIX_START_CHAR = '.';

/**
* Categories of the data in Remote store.
*/
Expand Down Expand Up @@ -112,6 +114,7 @@ boolean requiresHashAlgorithm() {
public BlobPath generatePath(PathInput pathInput, PathHashAlgorithm hashAlgorithm) {
assert Objects.nonNull(hashAlgorithm) : "hashAlgorithm is expected to be non-null";
return BlobPath.cleanPath()
.add(String.valueOf(REMOTE_STORE_DEDICATED_PREFIX_START_CHAR))
.add(hashAlgorithm.hash(pathInput))
.add(pathInput.basePath())
.add(pathInput.indexUUID())
Expand Down

0 comments on commit b76342a

Please sign in to comment.