You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/09/14 08:59:47 UTC

[camel-spring-boot] branch CAMEL-19869/disable-failing-integration-tests updated (64dc3ea1f23 -> d85fd000d4c)

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

nfilotto pushed a change to branch CAMEL-19869/disable-failing-integration-tests
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


 discard 64dc3ea1f23 CAMEL-19869: camel-infinispan - Disable failing Its
     new d85fd000d4c CAMEL-19869: camel-infinispan - Disable failing ITs

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (64dc3ea1f23)
            \
             N -- N -- N   refs/heads/CAMEL-19869/disable-failing-integration-tests (d85fd000d4c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:


[camel-spring-boot] 01/01: CAMEL-19869: camel-infinispan - Disable failing ITs

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

nfilotto pushed a commit to branch CAMEL-19869/disable-failing-integration-tests
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git

commit d85fd000d4cb630f8bd6b885e99687bed9683a97
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Thu Sep 14 10:58:08 2023 +0200

    CAMEL-19869: camel-infinispan - Disable failing ITs
---
 .../infinispan/remote/InfinispanRemoteAggregationRepositoryIT.java      | 2 ++
 .../remote/InfinispanRemoteAggregationRepositoryOperationsIT.java       | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryIT.java b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryIT.java
index ed2ebd038e6..ab6e99084d9 100644
--- a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryIT.java
+++ b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryIT.java
@@ -21,6 +21,7 @@ import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.spring.boot.CamelAutoConfiguration;
 import org.apache.camel.test.spring.junit5.CamelSpringBootTest;
 
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import org.springframework.beans.factory.annotation.Autowired;
@@ -37,6 +38,7 @@ import org.springframework.test.annotation.DirtiesContext;
 				InfinispanRemoteAggregationRepositoryIT.class
 		}
 )
+@Disabled("https://issues.apache.org/jira/browse/CAMEL-19869")
 public class InfinispanRemoteAggregationRepositoryIT extends InfinispanRemoteTestSupport {
 	public static final int COMPLETION_SIZE = 4;
 	public static final String CORRELATOR_HEADER = "CORRELATOR_HEADER";
diff --git a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryOperationsIT.java b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryOperationsIT.java
index a9b26fb716a..eb6fbc3bf71 100644
--- a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryOperationsIT.java
+++ b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteAggregationRepositoryOperationsIT.java
@@ -26,6 +26,7 @@ import org.apache.camel.test.spring.junit5.CamelSpringBootTest;
 
 import org.junit.jupiter.api.AfterAll;
 import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -46,6 +47,7 @@ import org.springframework.test.annotation.DirtiesContext;
                 InfinispanRemoteAggregationRepositoryOperationsIT.class
         }
 )
+@Disabled("https://issues.apache.org/jira/browse/CAMEL-19869")
 public class InfinispanRemoteAggregationRepositoryOperationsIT extends InfinispanRemoteTestSupport {
     private static InfinispanRemoteAggregationRepository aggregationRepository;