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 0fc93f5315db109042b93729a7083039ac0c91b0
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Mar 8 06:49:58 2021 +0100

    CAMEL-16293 - Camel-AWS2-Components: Autocreation of entities should be 
false by default - camel-aws2-sqs
---
 .../java/org/apache/camel/component/aws2/sqs/Sqs2Configuration.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-aws2-sqs/src/main/java/org/apache/camel/component/aws2/sqs/Sqs2Configuration.java
 
b/components/camel-aws2-sqs/src/main/java/org/apache/camel/component/aws2/sqs/Sqs2Configuration.java
index 44218ad..df7d02d 100644
--- 
a/components/camel-aws2-sqs/src/main/java/org/apache/camel/component/aws2/sqs/Sqs2Configuration.java
+++ 
b/components/camel-aws2-sqs/src/main/java/org/apache/camel/component/aws2/sqs/Sqs2Configuration.java
@@ -47,8 +47,8 @@ public class Sqs2Configuration implements Cloneable {
     private String proxyHost;
     @UriParam(label = "proxy")
     private Integer proxyPort;
-    @UriParam(defaultValue = "true")
-    private boolean autoCreateQueue = true;
+    @UriParam(defaultValue = "false")
+    private boolean autoCreateQueue;
     @UriParam(defaultValue = "false")
     private boolean trustAllCertificates;
     @UriParam(defaultValue = "false")

Reply via email to