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/23 14:39:06 UTC

[camel] 02/04: Camel-AWS Kinesis Firehose - Fixed log message

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 4a3ea6fc75276563fc348950d0046b239c9cfa3b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jan 23 15:34:06 2018 +0100

    Camel-AWS Kinesis Firehose - Fixed log message
---
 .../apache/camel/component/aws/firehose/KinesisFirehoseComponent.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponent.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponent.java
index 9fec233..065fc9f 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponent.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/firehose/KinesisFirehoseComponent.java
@@ -60,7 +60,7 @@ public class KinesisFirehoseComponent extends DefaultComponent {
             setRegion(region);
         }
         if (configuration.getAmazonKinesisFirehoseClient() == null && (configuration.getAccessKey() == null || configuration.getSecretKey() == null)) {
-            throw new IllegalArgumentException("AmazonKinesisClient or accessKey and secretKey must be specified");
+            throw new IllegalArgumentException("AmazonKinesisFirehoseClient or accessKey and secretKey must be specified");
         }
         KinesisFirehoseEndpoint endpoint = new KinesisFirehoseEndpoint(uri, configuration, this);
         return endpoint;

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