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 2022/06/28 08:06:20 UTC

[camel] branch main updated: aws-sqs - Wrong example in docs

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d2510a245ab aws-sqs - Wrong example in docs
d2510a245ab is described below

commit d2510a245ab4e6bd37d88f614cac95be6115fd4d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jun 28 10:06:09 2022 +0200

    aws-sqs - Wrong example in docs
---
 .../camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc b/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
index b89857340b9..b9f0e330d7e 100644
--- a/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
+++ b/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
@@ -101,7 +101,7 @@ mapping with the SQSConfiguration option.
 
 [source,java]
 ---------------------------------------------------------------------------------
-from("aws2-sqs://MyQueue?amazonSQSClient=#client&delay=5000&maxMessagesPerPoll=5")
+from("aws2-sqs://MyQueue?autoCreateQueue=true")
 .to("mock:result");
 ---------------------------------------------------------------------------------