This is an automated email from the ASF dual-hosted git repository. stefanegli pushed a commit to branch OAK-11931 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 0e1591924742ed74a9b87ac5f178e3e377ab97f5 Author: stefan-egli <[email protected]> AuthorDate: Mon Oct 6 17:52:14 2025 +0200 OAK-11931 : fix default for prevNoPropCachePercentage --- .../java/org/apache/jackrabbit/oak/plugins/document/Configuration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Configuration.java b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Configuration.java index 434aa738ef..a23685f402 100644 --- a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Configuration.java +++ b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Configuration.java @@ -33,6 +33,7 @@ import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilde import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilder.DEFAULT_DIFF_CACHE_PERCENTAGE; import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilder.DEFAULT_NODE_CACHE_PERCENTAGE; import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilder.DEFAULT_PREV_DOC_CACHE_PERCENTAGE; +import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilder.DEFAULT_PREV_NO_PROP_CACHE_PERCENTAGE; import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreBuilder.DEFAULT_UPDATE_LIMIT; import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreService.DEFAULT_AVOID_EXCLUSIVE_MERGE_LOCK; import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreService.DEFAULT_FULL_GC_ENABLED; @@ -186,7 +187,7 @@ import static org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreServic name = "PrevNoProp Cache", description = "Percentage of cache to be allocated towards PrevNoProp cache." + " This cache is used to keep non existence of properties in previous documents and can be small.") - int prevNoPropCachePercentage() default DEFAULT_PREV_DOC_CACHE_PERCENTAGE; + int prevNoPropCachePercentage() default DEFAULT_PREV_NO_PROP_CACHE_PERCENTAGE; @AttributeDefinition( name = "LIRS Cache Segment Count",
