You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by st...@apache.org on 2023/11/23 09:24:26 UTC

(jackrabbit-oak) branch OAK-10559-2 created (now eb5fab024f)

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

stefanegli pushed a change to branch OAK-10559-2
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


      at eb5fab024f OAK-10559 : safety sleep of 2min to verify test flakyness

This branch includes the following new commits:

     new eb5fab024f OAK-10559 : safety sleep of 2min to verify test flakyness

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(jackrabbit-oak) 01/01: OAK-10559 : safety sleep of 2min to verify test flakyness

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

stefanegli pushed a commit to branch OAK-10559-2
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit eb5fab024f4e8e978de7763aea60314103d4dfff
Author: stefan-egli <st...@apache.org>
AuthorDate: Thu Nov 23 10:24:22 2023 +0100

    OAK-10559 : safety sleep of 2min to verify test flakyness
---
 .../jackrabbit/oak/plugins/document/LastRevRecoveryRandomizedIT.java   | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/LastRevRecoveryRandomizedIT.java b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/LastRevRecoveryRandomizedIT.java
index 0c86a65d61..4e9c9295a4 100644
--- a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/LastRevRecoveryRandomizedIT.java
+++ b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/LastRevRecoveryRandomizedIT.java
@@ -76,6 +76,9 @@ public class LastRevRecoveryRandomizedIT {
 
     @Before
     public void setUp() throws Exception {
+        LOG.info("LastRevRecoveryRandomizedIT : OAK-10559 safety sleep of 2min");
+        Thread.sleep(120000);
+        LOG.info("LastRevRecoveryRandomizedIT : OAK-10559 safety sleep of 2min done.");
         LOG.info("Running " + getClass().getSimpleName() + " with seed " + SEED);
         clock = new Clock.Virtual();
         Revision.setClock(clock);