This is an automated email from the ASF dual-hosted git repository.
baedke pushed a commit to branch issue/oak-10551
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/issue/oak-10551 by this push:
new 0ccba02ba7 OAK-10551: o.a.j.o.jcr.osgi.RepositoryManager declares OSGi
properties that are not used at all.
0ccba02ba7 is described below
commit 0ccba02ba7d06775894d428d8f52388ac3dbbea6
Author: Manfred Baedke <[email protected]>
AuthorDate: Wed Nov 15 13:35:44 2023 +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";