orpiske commented on code in PR #12580:
URL: https://github.com/apache/camel/pull/12580#discussion_r1435595755


##########
components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsTopicDurableSharedTest.java:
##########
@@ -18,18 +18,19 @@
 
 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;
-import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
+
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.TimeUnit;
 
 @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";
+    private static final String TEST_DESTINATION_NAME = 
"activemq:topic:in.only.topic.shared.durable.test";
+
+    private CountDownLatch artemisConsumersWereCreated = new CountDownLatch(1);

Review Comment:
   Where are you counting down the latch? 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to