Skip to content

Commit 9d330e0

Browse files
author
Horia Chiorean
authored
Merge pull request #1655 from dalbani/patch-3
[MODE-2691] Set min size of S3BinaryStore's file system cache to 0
2 parents 2ef8e54 + 4828e10 commit 9d330e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modeshape-jcr/src/main/java/org/modeshape/jcr/value/binary/S3BinaryStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public S3BinaryStore(String accessKey, String secretKey, String bucketName, Stri
100100
this.s3Client.setEndpoint(endPoint);
101101

102102
this.fileSystemCache = TransientBinaryStore.get();
103-
this.fileSystemCache.setMinimumBinarySizeInBytes(1L);
103+
this.fileSystemCache.setMinimumBinarySizeInBytes(0L);
104104

105105
// Ensure bucket exists
106106
try {

0 commit comments

Comments
 (0)