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 88a090b33dac2a0486d7bc8f82053539017a6a02 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri May 24 14:08:55 2019 +0200 CAMEL-13570 - Regen docs --- components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc | 2 +- .../camel/component/aws/sqs/springboot/SqsComponentConfiguration.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc b/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc index b550129..c33ee42 100644 --- a/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc +++ b/components/camel-aws-sqs/src/main/docs/aws-sqs-component.adoc @@ -76,7 +76,7 @@ with the following path and query parameters: | Name | Description | Default | Type | *amazonAWSHost* (common) | The hostname of the Amazon AWS cloud. | amazonaws.com | String | *amazonSQSClient* (common) | To use the AmazonSQS as client | | AmazonSQS -| *autoCreateQueue* (common) | Setting the autocreation of the queue | false | boolean +| *autoCreateQueue* (common) | Setting the autocreation of the queue | true | boolean | *headerFilterStrategy* (common) | To use a custom HeaderFilterStrategy to map headers to/from Camel. | | HeaderFilterStrategy | *queueOwnerAWSAccountId* (common) | Specify the queue owner aws account id when you need to connect the queue with different account owner. | | String | *region* (common) | Specify the queue region which could be used with queueOwnerAWSAccountId to build the service URL. | | String diff --git a/platforms/spring-boot/components-starter/camel-aws-sqs-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-sqs-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentConfiguration.java index 3082327..544961b 100644 --- a/platforms/spring-boot/components-starter/camel-aws-sqs-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-aws-sqs-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentConfiguration.java @@ -277,7 +277,7 @@ public class SqsComponentConfiguration /** * Setting the autocreation of the queue */ - private Boolean autoCreateQueue = false; + private Boolean autoCreateQueue = true; public String getAmazonAWSHost() { return amazonAWSHost;