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
commit 335de14cdf53c5fd88d7fbf7018fecb9da848dd6 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Aug 4 11:58:12 2020 +0200 Camel-AWS2-SQS: Fixed purgeQueue region example --- components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc index eeb7f42..04da9c9 100644 --- a/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc +++ b/components/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc @@ -385,7 +385,8 @@ Use purgeQueue operation to purge queue. ------------------------------------------------------------------------------------------------------ from("direct:start") - .setHeader(SqsConstants.SQS_OPERATION, constant("purgeQueue")).to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)®ion=EU_WEST_1"); + .setHeader(SqsConstants.SQS_OPERATION, constant("purgeQueue")) + .to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)®ion=eu-west-1"); ------------------------------------------------------------------------------------------------------ As result you'll get an exchange containing a `PurgeQueueResponse` instance.