You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/07/25 06:49:13 UTC

[camel] branch main updated: camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot. (#10814)

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

davsclaus 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 b2c65d65dc8 camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot. (#10814)
b2c65d65dc8 is described below

commit b2c65d65dc8559e89f96d3e10fd30ba4cea15c18
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jul 25 08:49:07 2023 +0200

    camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot. (#10814)
---
 .../component/jms/JmsRequestReplyTempQueueMultipleConsumersTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsRequestReplyTempQueueMultipleConsumersTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsRequestReplyTempQueueMultipleConsumersTest.java
index c9df3c6b575..18e91bb74a3 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsRequestReplyTempQueueMultipleConsumersTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsRequestReplyTempQueueMultipleConsumersTest.java
@@ -29,6 +29,7 @@ import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.test.infra.artemis.services.ArtemisService;
 import org.apache.camel.test.infra.artemis.services.ArtemisServiceFactory;
 import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.extension.RegisterExtension;
 import org.junit.jupiter.params.ParameterizedTest;
@@ -65,6 +66,7 @@ public class JmsRequestReplyTempQueueMultipleConsumersTest extends CamelTestSupp
 
     @ParameterizedTest
     @ValueSource(ints = { 500, 100, 100 })
+    @Disabled("This will spam logs with Session is closed")
     public void testTempQueueRefreshed(int numFiles) throws Exception {
         executorService = context.getExecutorServiceManager().newFixedThreadPool(this, "test", 5);