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 2019/03/01 08:22:30 UTC

[camel] 03/04: Camel-AWS-ECS: polished docs

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 b231fdd205b162c7c7a438b66fb90182605e7694
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 1 09:20:44 2019 +0100

    Camel-AWS-ECS: polished docs
---
 .../src/main/java/org/apache/camel/component/aws/ecs/ECSComponent.java  | 2 +-
 .../src/main/java/org/apache/camel/component/aws/ecs/ECSProducer.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSComponent.java b/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSComponent.java
index 61999c6..c15c958 100644
--- a/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSComponent.java
+++ b/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSComponent.java
@@ -78,7 +78,7 @@ public class ECSComponent extends DefaultComponent {
     }
 
     /**
-     * The AWS KMS default configuration
+     * The AWS ECS default configuration
      */
     public void setConfiguration(ECSConfiguration configuration) {
         this.configuration = configuration;
diff --git a/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSProducer.java b/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSProducer.java
index 6265371..5e5a9cf 100644
--- a/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSProducer.java
+++ b/components/camel-aws-ecs/src/main/java/org/apache/camel/component/aws/ecs/ECSProducer.java
@@ -80,7 +80,7 @@ public class ECSProducer extends DefaultProducer {
     @Override
     public String toString() {
         if (ecsProducerToString == null) {
-            ecsProducerToString = "KMSProducer[" + URISupport.sanitizeUri(getEndpoint().getEndpointUri()) + "]";
+            ecsProducerToString = "ECSProducer[" + URISupport.sanitizeUri(getEndpoint().getEndpointUri()) + "]";
         }
         return ecsProducerToString;
     }