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
commit 08ce4ae18c3b0fa30e435c8a99b7329827097f4f Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Mar 11 13:48:05 2024 +0100 CAMEL-20477: only use a persistent broker if needed by the test --- .../java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java index 2fa7d237ca4..10b86619e6a 100644 --- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java +++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/TwoConsumerOnSameQueueTest.java @@ -47,7 +47,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue; public class TwoConsumerOnSameQueueTest extends CamelTestSupport { @RegisterExtension - public static ArtemisService service = ArtemisServiceFactory.createPersistentVMService(); + public static ArtemisService service = ArtemisServiceFactory.createVMService(); @Override protected CamelContext createCamelContext() throws Exception {
