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 65746540eec0b6fa1984bbd922f06ddee473e880 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jan 17 16:19:15 2018 +0100 Camel AWS DDB - secretKey and accessKey are secret --- .../java/org/apache/camel/component/aws/ddb/DdbConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/DdbConfiguration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/DdbConfiguration.java index 352b2a8..cecd2c5 100644 --- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/DdbConfiguration.java +++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/DdbConfiguration.java @@ -29,9 +29,9 @@ public class DdbConfiguration implements Cloneable { @UriPath @Metadata(required = "true") private String tableName; - @UriParam + @UriParam(label = "security", secret = true) private String accessKey; - @UriParam + @UriParam(label = "security", secret = true) private String secretKey; @UriParam private AmazonDynamoDB amazonDDBClient; -- To stop receiving notification emails like this one, please contact "commits@camel.apache.org" <commits@camel.apache.org>.