This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f507c275ffe59f8ece210d8f01de9fd1413c37dc Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Sep 1 10:24:43 2021 +0200 CAMEL-16849 - Add at least one example for component in docs - Camel-ActiveMQ --- docs/components/modules/ROOT/pages/activemq-component.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/modules/ROOT/pages/activemq-component.adoc b/docs/components/modules/ROOT/pages/activemq-component.adoc index eed541d..15c98d3 100644 --- a/docs/components/modules/ROOT/pages/activemq-component.adoc +++ b/docs/components/modules/ROOT/pages/activemq-component.adoc @@ -339,14 +339,14 @@ You'll need to provide a connectioFactory to the ActiveMQ Component, to have the -------------------------------------------------------------------------------- from("timer:mytimer?period=5000") .setBody(constant("HELLO from Camel!")) - .to("jms:queue:HELLO.WORLD"); + .to("activemq:queue:HELLO.WORLD"); -------------------------------------------------------------------------------- === Consumer Example [source,java] -------------------------------------------------------------------------------- -from("jms:queue:HELLO.WORLD") +from("activemq:queue:HELLO.WORLD") .log("Received a message - ${body}"); --------------------------------------------------------------------------------
