This is an automated email from the ASF dual-hosted git repository.

baedke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new ae8eaa5d5a OAK-10551: o.a.j.o.jcr.osgi.RepositoryManager declares OSGi 
properties that are not used at all.
ae8eaa5d5a is described below

commit ae8eaa5d5ac70f3b423a17ce254943d72de6898e
Author: mbaedke <manfred.bae...@gmail.com>
AuthorDate: Tue Mar 5 14:17:05 2024 +0100

    OAK-10551: o.a.j.o.jcr.osgi.RepositoryManager declares OSGi properties that 
are not used at all.
    
    Removed misleading property name declarations.
---
 .../java/org/apache/jackrabbit/oak/jcr/osgi/RepositoryManager.java     | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/osgi/RepositoryManager.java
 
b/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/osgi/RepositoryManager.java
index e7f3101153..cb16959ab2 100644
--- 
a/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/osgi/RepositoryManager.java
+++ 
b/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/osgi/RepositoryManager.java
@@ -104,20 +104,17 @@ public class RepositoryManager {
 
     @Property(
         intValue = DEFAULT_OBSERVATION_QUEUE_LENGTH,
-        name = "Observation queue length",
         description = "Maximum number of pending revisions in a observation 
listener queue")
     private static final String OBSERVATION_QUEUE_LENGTH = 
"oak.observation.queue-length";
 
     @Property(
         boolValue = DEFAULT_COMMIT_RATE_LIMIT,
-        name = "Commit rate limiter",
         description = "Limit the commit rate once the number of pending 
revisions in the observation " +
                 "queue exceed 90% of its capacity.")
     private static final String COMMIT_RATE_LIMIT = 
"oak.observation.limit-commit-rate";
 
     @Property(
             boolValue = DEFAULT_FAST_QUERY_RESULT_SIZE,
-            name = "Fast query result size",
             description = "Whether the query result size should return an 
estimation (or -1 if disabled) for large queries")
     private static final String FAST_QUERY_RESULT_SIZE = 
"oak.query.fastResultSize";
 

Reply via email to