You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/03/08 07:00:12 UTC

[camel] 01/05: CAMEL-16293 - Camel-AWS2-Components: Autocreation of entities should be false by default - camel-aws2-sns

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 0bef464bfb804eff4778082a5a0fc2f6ce85db66
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 8 07:46:42 2021 +0100

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

diff --git a/components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Configuration.java b/components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Configuration.java
index e3d9ff2..a549d3d 100644
--- a/components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Configuration.java
+++ b/components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/Sns2Configuration.java
@@ -52,8 +52,8 @@ public class Sns2Configuration implements Cloneable {
     private String kmsMasterKeyId;
     @UriParam
     private boolean serverSideEncryptionEnabled;
-    @UriParam(defaultValue = "true")
-    private boolean autoCreateTopic = true;
+    @UriParam(defaultValue = "false")
+    private boolean autoCreateTopic;
     @UriParam(defaultValue = "false")
     private boolean overrideEndpoint;
     @UriParam