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 2018/01/24 13:01:59 UTC

[camel] 04/05: CAMEL-12189 - Camel-AWS Kinesis Firehose: Add a ComponentVerifier

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 c66efa561cfb143cd32bc4c0d6c05dabaa4f0f50
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 24 13:56:29 2018 +0100

    CAMEL-12189 - Camel-AWS Kinesis Firehose: Add a ComponentVerifier
---
 .../aws/firehose/KinesisFirehoseComponentVerifierExtension.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponentVerifierExtension.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponentVerifierExtension.java
index 09cde5f..eea12d5 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponentVerifierExtension.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponentVerifierExtension.java
@@ -77,7 +77,7 @@ public class KinesisFirehoseComponentVerifierExtension extends DefaultComponentV
             client.listDeliveryStreams(new ListDeliveryStreamsRequest());
         } catch (SdkClientException e) {
             ResultErrorBuilder errorBuilder = ResultErrorBuilder.withCodeAndDescription(VerificationError.StandardCode.AUTHENTICATION, e.getMessage())
-                .detail("aws_ddb_exception_message", e.getMessage()).detail(VerificationError.ExceptionAttribute.EXCEPTION_CLASS, e.getClass().getName())
+                .detail("aws_kinesis_firehose_exception_message", e.getMessage()).detail(VerificationError.ExceptionAttribute.EXCEPTION_CLASS, e.getClass().getName())
                 .detail(VerificationError.ExceptionAttribute.EXCEPTION_INSTANCE, e);
 
             builder.error(errorBuilder.build());

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.