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

mreutegg 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 4b1d15e5c5 OAK-10315: Counter for DocumentStore check
     new 41e9d740ce Merge pull request #1008 from mreutegg/OAK-10315-1
4b1d15e5c5 is described below

commit 4b1d15e5c52aa385d5301942cf682e70fd0b6239
Author: Marcel Reutegger <[email protected]>
AuthorDate: Tue Jun 27 10:58:34 2023 +0200

    OAK-10315: Counter for DocumentStore check
    
    Disable counter output for test
---
 .../org/apache/jackrabbit/oak/run/DocumentStoreCheckCommandTest.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/oak-run/src/test/java/org/apache/jackrabbit/oak/run/DocumentStoreCheckCommandTest.java
 
b/oak-run/src/test/java/org/apache/jackrabbit/oak/run/DocumentStoreCheckCommandTest.java
index 4d6eae00d5..b041629c82 100644
--- 
a/oak-run/src/test/java/org/apache/jackrabbit/oak/run/DocumentStoreCheckCommandTest.java
+++ 
b/oak-run/src/test/java/org/apache/jackrabbit/oak/run/DocumentStoreCheckCommandTest.java
@@ -88,6 +88,7 @@ public class DocumentStoreCheckCommandTest {
     public void check() throws Exception {
         DocumentStoreCheckCommand cmd = new DocumentStoreCheckCommand();
         cmd.execute(
+                "--counter", "false",
                 "--out",
                 output.getAbsolutePath(),
                 MongoUtils.URL
@@ -103,6 +104,7 @@ public class DocumentStoreCheckCommandTest {
         DocumentStoreCheckCommand cmd = new DocumentStoreCheckCommand();
         cmd.execute(
                 "--summary", "false",
+                "--counter", "false",
                 "--out", output.getAbsolutePath(),
                 MongoUtils.URL
         );
@@ -117,6 +119,7 @@ public class DocumentStoreCheckCommandTest {
         DocumentStoreCheckCommand cmd = new DocumentStoreCheckCommand();
         cmd.execute(
                 "--summary", "false",
+                "--counter", "false",
                 "--out", output.getAbsolutePath(),
                 MongoUtils.URL
         );
@@ -131,6 +134,7 @@ public class DocumentStoreCheckCommandTest {
         DocumentStoreCheckCommand cmd = new DocumentStoreCheckCommand();
         cmd.execute(
                 "--summary", "false",
+                "--counter", "false",
                 "--out", output.getAbsolutePath(),
                 MongoUtils.URL
         );
@@ -144,6 +148,7 @@ public class DocumentStoreCheckCommandTest {
         DocumentStoreCheckCommand cmd = new DocumentStoreCheckCommand();
         cmd.execute(
                 "--summary", "false",
+                "--counter", "false",
                 "--out", output.getAbsolutePath(),
                 MongoUtils.URL
         );

Reply via email to