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

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 00d7344  Remove superfluous toD in JmsRoutes
00d7344 is described below

commit 00d7344c0894408f7c9a8f66ffa3a9588cd4a6ae
Author: James Netherton <[email protected]>
AuthorDate: Wed May 19 07:20:00 2021 +0100

    Remove superfluous toD in JmsRoutes
---
 .../java/org/apache/camel/quarkus/component/messaging/it/JmsRoutes.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/messaging/src/main/java/org/apache/camel/quarkus/component/messaging/it/JmsRoutes.java
 
b/integration-tests/messaging/src/main/java/org/apache/camel/quarkus/component/messaging/it/JmsRoutes.java
index bb14394..50cf70d 100644
--- 
a/integration-tests/messaging/src/main/java/org/apache/camel/quarkus/component/messaging/it/JmsRoutes.java
+++ 
b/integration-tests/messaging/src/main/java/org/apache/camel/quarkus/component/messaging/it/JmsRoutes.java
@@ -28,7 +28,7 @@ public class JmsRoutes extends RouteBuilder {
     @Override
     public void configure() throws Exception {
         from("jms:queue:typeTest?concurrentConsumers=5")
-                .toD("jms:queue:typeTestResult");
+                .to("jms:queue:typeTestResult");
 
         from("jms:queue:typeTestResult?artemisStreamingEnabled=false")
                 .to("mock:jmsType");

Reply via email to