rishabhdaim commented on code in PR #1309:
URL: https://github.com/apache/jackrabbit-oak/pull/1309#discussion_r1491125739


##########
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/memory/MemoryDocumentStore.java:
##########
@@ -98,6 +99,8 @@ public class MemoryDocumentStore implements DocumentStore {
 
     private static final Key KEY_MODIFIED = new Key(MODIFIED_IN_SECS, null);
 
+    private static final long SIZELIMIT = 
SystemPropertySupplier.create("memoryds.size.limit", -1).get();

Review Comment:
   ```suggestion
       private static final long SIZE_LIMIT = 
SystemPropertySupplier.create("memoryds.size.limit", -1).get();
   ```



-- 
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]

Reply via email to