This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch spam in repository https://gitbox.apache.org/repos/asf/camel.git
commit 55f44daefe95e07413d7905615c4ae0c87017423 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Jul 25 07:29:22 2023 +0200 camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot. --- .../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);