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 05:49:07 UTC

[camel] branch spam created (now 55f44daefe9)

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

davsclaus pushed a change to branch spam
in repository https://gitbox.apache.org/repos/asf/camel.git


      at 55f44daefe9 camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot.

This branch includes the following new commits:

     new 55f44daefe9 camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel] 01/01: camel-jms: Disable test that spam logs with Session is closed that makes it harder to troubleshoot.

Posted by da...@apache.org.
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 <cl...@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);