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 2020/03/17 15:43:06 UTC

[camel] branch master updated (70a2218 -> d3d1c06)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 70a2218  Camel-AWS2-EC2: Fixed CS
     new d7f1707  Camel-AWS2-ECS: Cleanup
     new 0b9c660  Camel-AWS2-EKS: Cleaunp
     new 60e56c3  Camel-AWS2-IAM: Cleanup
     new 70d7836  Camel-AWS2-Kinesis: Cleanup
     new d3d1c06  Camel-AWS2-Kinesis: Fixed CS

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java | 2 +-
 .../camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java | 2 +-
 .../camel/component/aws2/iam/IAMComponentClientRegistryTest.java  | 2 +-
 .../component/aws2/kinesis/ReachedClosedStatusException.java      | 8 ++++++++
 4 files changed, 11 insertions(+), 3 deletions(-)


[camel] 03/05: Camel-AWS2-IAM: Cleanup

Posted by ac...@apache.org.
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 60e56c3eca419d9397fee72f223c82a5146aabce
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:37:51 2020 +0100

    Camel-AWS2-IAM: Cleanup
---
 .../apache/camel/component/aws2/iam/IAMComponentClientRegistryTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMComponentClientRegistryTest.java b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMComponentClientRegistryTest.java
index 514641f..bee558e 100644
--- a/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMComponentClientRegistryTest.java
+++ b/components/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMComponentClientRegistryTest.java
@@ -40,7 +40,7 @@ public class IAMComponentClientRegistryTest extends CamelTestSupport {
 
         IAM2Component component = context.getComponent("aws2-iam", IAM2Component.class);
         assertThrows(IllegalArgumentException.class, () -> {
-            IAM2Endpoint endpoint = (IAM2Endpoint)component.createEndpoint("aws2-iam://TestDomain");
+            component.createEndpoint("aws2-iam://TestDomain");
         });
     }
 }


[camel] 02/05: Camel-AWS2-EKS: Cleaunp

Posted by ac...@apache.org.
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 0b9c6602d79c7b08b6a3a5dcc202960ff75c5e6d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:37:01 2020 +0100

    Camel-AWS2-EKS: Cleaunp
---
 .../camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java b/components/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java
index b18305f..0992173 100644
--- a/components/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java
+++ b/components/camel-aws2-eks/src/test/java/org/apache/camel/component/aws2/eks/EKS2ComponentClientRegistryTest.java
@@ -40,7 +40,7 @@ public class EKS2ComponentClientRegistryTest extends CamelTestSupport {
 
         EKS2Component component = context.getComponent("aws2-eks", EKS2Component.class);
         assertThrows(IllegalArgumentException.class, () -> {
-            EKS2Endpoint endpoint = (EKS2Endpoint)component.createEndpoint("aws-eks://TestDomain");
+            component.createEndpoint("aws-eks://TestDomain");
         });
     }
 }


[camel] 05/05: Camel-AWS2-Kinesis: Fixed CS

Posted by ac...@apache.org.
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 d3d1c06089436054e2f243aeedcb0ecd6f5a132e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:40:27 2020 +0100

    Camel-AWS2-Kinesis: Fixed CS
---
 .../component/aws2/kinesis/ReachedClosedStatusException.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
index 9344446..691993a 100644
--- a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
+++ b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
@@ -28,11 +28,11 @@ public class ReachedClosedStatusException extends Exception {
         this.shardId = shardId;
     }
 
-	public String getStreamName() {
-		return streamName;
-	}
+    public String getStreamName() {
+        return streamName;
+    }
 
-	public String getShardId() {
-		return shardId;
-	}
+    public String getShardId() {
+        return shardId;
+    }
 }


[camel] 04/05: Camel-AWS2-Kinesis: Cleanup

Posted by ac...@apache.org.
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 70d783605038b6c96e980bab98764bdddb1b32f5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:39:44 2020 +0100

    Camel-AWS2-Kinesis: Cleanup
---
 .../component/aws2/kinesis/ReachedClosedStatusException.java      | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
index 8747263..9344446 100644
--- a/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
+++ b/components/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/ReachedClosedStatusException.java
@@ -27,4 +27,12 @@ public class ReachedClosedStatusException extends Exception {
         this.streamName = streamName;
         this.shardId = shardId;
     }
+
+	public String getStreamName() {
+		return streamName;
+	}
+
+	public String getShardId() {
+		return shardId;
+	}
 }


[camel] 01/05: Camel-AWS2-ECS: Cleanup

Posted by ac...@apache.org.
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 d7f170753a36e0dc6609ee4b475505ae330a6c49
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 16:36:04 2020 +0100

    Camel-AWS2-ECS: Cleanup
---
 .../camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java b/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java
index 5799572..6e0916f 100644
--- a/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java
+++ b/components/camel-aws2-ecs/src/test/java/org/apache/camel/component/aws2/ecs/ECS2ComponentClientRegistryTest.java
@@ -40,7 +40,7 @@ public class ECS2ComponentClientRegistryTest extends CamelTestSupport {
 
         ECS2Component component = context.getComponent("aws2-ecs", ECS2Component.class);
         assertThrows(IllegalArgumentException.class, () -> {
-            ECS2Endpoint endpoint = (ECS2Endpoint)component.createEndpoint("aws-ecs://TestDomain");
+            component.createEndpoint("aws-ecs://TestDomain");
         });
     }
 }