You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/10 11:46:58 UTC

[camel] branch master updated: Camel-RabbitMQ: Don't declare connectionFactory in RabbitMQ Spring Itest, it will be automatically detected

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 28b8b67  Camel-RabbitMQ: Don't declare connectionFactory in RabbitMQ Spring Itest, it will be automatically detected
28b8b67 is described below

commit 28b8b671ed6ab98decb79efd72a250167884af97
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 10 12:45:42 2020 +0100

    Camel-RabbitMQ: Don't declare connectionFactory in RabbitMQ Spring Itest, it will be automatically detected
---
 .../camel-rabbitmq/src/test/resources/RabbitMQSpringIntTest-context.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-rabbitmq/src/test/resources/RabbitMQSpringIntTest-context.xml b/components/camel-rabbitmq/src/test/resources/RabbitMQSpringIntTest-context.xml
index 87accaf..b6a6cb7 100644
--- a/components/camel-rabbitmq/src/test/resources/RabbitMQSpringIntTest-context.xml
+++ b/components/camel-rabbitmq/src/test/resources/RabbitMQSpringIntTest-context.xml
@@ -33,7 +33,7 @@
   <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
     <route id="_route1">
       <from id="_from1" uri="direct:rabbitMQ"/>
-      <to id="_to1" uri="rabbitmq://localhost:5672/ex2?connectionFactory=#customConnectionFactory&amp;queue=q2&amp;routingKey=rk2"/>
+      <to id="_to1" uri="rabbitmq://localhost:5672/ex2?queue=q2&amp;routingKey=rk2"/>
     </route>
   </camelContext>
   <!-- END SNIPPET: example -->