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 mr...@apache.org on 2022/11/25 10:35:59 UTC

[jackrabbit-oak] branch 1.22 updated: OAK-9443: Test failure: LeaseUpdateSocketTimeoutIT.leaseUpdateFailureOnSocketTimeout

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

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


The following commit(s) were added to refs/heads/1.22 by this push:
     new fb82302434 OAK-9443: Test failure: LeaseUpdateSocketTimeoutIT.leaseUpdateFailureOnSocketTimeout
     new 5197f4a078 Merge pull request #770 from mreutegg/OAK-9443-1.22
fb82302434 is described below

commit fb82302434f00bf0dc560c2a4e063425398ba2cc
Author: Marcel Reutegger <ma...@gmail.com>
AuthorDate: Fri Nov 25 11:31:27 2022 +0100

    OAK-9443: Test failure: LeaseUpdateSocketTimeoutIT.leaseUpdateFailureOnSocketTimeout
    
    Disable test on Jenkins
    Merge into 1.22 branch
---
 .../oak/plugins/document/mongo/LeaseUpdateSocketTimeoutIT.java         | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/LeaseUpdateSocketTimeoutIT.java b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/LeaseUpdateSocketTimeoutIT.java
index 5b3d737266..3c61b1a5f2 100644
--- a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/LeaseUpdateSocketTimeoutIT.java
+++ b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/LeaseUpdateSocketTimeoutIT.java
@@ -22,6 +22,7 @@ import java.util.List;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.atomic.AtomicBoolean;
 
+import org.apache.jackrabbit.oak.commons.CIHelper;
 import org.apache.jackrabbit.oak.plugins.document.ClusterNodeInfo;
 import org.apache.jackrabbit.oak.plugins.document.DocumentStore;
 import org.apache.jackrabbit.oak.plugins.document.DocumentStoreException;
@@ -46,6 +47,7 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
+import static org.junit.Assume.assumeFalse;
 import static org.junit.Assume.assumeTrue;
 
 public class LeaseUpdateSocketTimeoutIT {
@@ -81,6 +83,7 @@ public class LeaseUpdateSocketTimeoutIT {
     @BeforeClass
     public static void dockerAvailable() {
         assumeTrue(MongoDockerRule.isDockerAvailable());
+        assumeFalse(CIHelper.jenkins()); // OAK-9443
     }
 
     @Before