You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/12/21 20:51:10 UTC

(camel) branch main updated: CAMEL-20276: disabled shared topic tests (#12556)

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 65f92e6a161 CAMEL-20276: disabled shared topic tests (#12556)
65f92e6a161 is described below

commit 65f92e6a1614180647185e5e82764b47897369be
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Thu Dec 21 17:51:04 2023 -0300

    CAMEL-20276: disabled shared topic tests (#12556)
---
 .../java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java  | 2 ++
 .../test/java/org/apache/camel/component/jms/JmsTopicSharedTest.java    | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java
index 0f2363d1eda..77d47c6bf2e 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jms;
 
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Tag;
 import org.junit.jupiter.api.Tags;
 import org.junit.jupiter.api.Test;
@@ -25,6 +26,7 @@ import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
 @Tags({ @Tag("not-parallel") })
 @DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", disabledReason = "Flaky on GitHub Actions")
+@Disabled("Disabled due to CAMEL-20276")
 public class JmsTopicDurableSharedTest extends AbstractPersistentJMSTest {
 
     private static final String TEST_DESTINATION_NAME = "activemq:topic:in.only.topic.consumer.test";
diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicSharedTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicSharedTest.java
index 37fb13e91c8..de367456860 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicSharedTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicSharedTest.java
@@ -18,11 +18,13 @@ package org.apache.camel.component.jms;
 
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Tag;
 import org.junit.jupiter.api.Tags;
 import org.junit.jupiter.api.Test;
 
 @Tags({ @Tag("not-parallel") })
+@Disabled("Disabled due to CAMEL-20276")
 public class JmsTopicSharedTest extends AbstractPersistentJMSTest {
 
     private static final String TEST_DESTINATION_NAME = "activemq:topic:in.only.topic.consumer.test";