This is an automated email from the ASF dual-hosted git repository.
nfilotto pushed a commit to branch camel-spring-boot-4.0.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/camel-spring-boot-4.0.x by
this push:
new 1a34b1ceef2 CAMEL-19869: camel-infinispan - Disable failing ITs (#944)
1a34b1ceef2 is described below
commit 1a34b1ceef2219517495910e052da8ef0fe032f2
Author: Nicolas Filotto <[email protected]>
AuthorDate: Thu Sep 14 14:19:53 2023 +0200
CAMEL-19869: camel-infinispan - Disable failing ITs (#944)
## Motivation
The integration tests `InfinispanRemoteAggregationRepositoryIT` and
`InfinispanRemoteAggregationRepositoryOperationsIT` are failing on the CI.
## Modifications:
* Disable the integration tests as long as they are not fixed
---
.../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;