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/09/29 15:41:50 UTC

[camel] 01/01: Camel-AWS2-KMS: Fixes wrong container and profile names

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

acosentino pushed a commit to branch kms-minor-fixes
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0ffa77c7318b2eeb81f643d7200f983f9a75c0fe
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Sep 29 17:41:06 2020 +0200

    Camel-AWS2-KMS: Fixes wrong container and profile names
---
 components/camel-aws2-kms/pom.xml                                   | 6 +++---
 .../apache/camel/component/aws2/kms/localstack/Aws2KmsBaseTest.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-aws2-kms/pom.xml b/components/camel-aws2-kms/pom.xml
index b7032b7..42bc732 100644
--- a/components/camel-aws2-kms/pom.xml
+++ b/components/camel-aws2-kms/pom.xml
@@ -76,7 +76,7 @@
 
     <profiles>
         <profile>
-            <id>aws2-s3-skip-tests</id>
+            <id>aws2-kms-skip-tests</id>
             <activation>
                 <activeByDefault>true</activeByDefault>
             </activation>
@@ -94,7 +94,7 @@
 
         <!-- activate test if the docker socket file is accessible -->
         <profile>
-            <id>aws2-s3-tests-docker-file</id>
+            <id>aws2-kms-tests-docker-file</id>
             <activation>
                 <file>
                     <exists>/var/run/docker.sock</exists>
@@ -117,7 +117,7 @@
 
         <!-- activate test if the DOCKER_HOST env var is set -->
         <profile>
-            <id>aws2-s3-tests-docker-env</id>
+            <id>aws2-kms-tests-docker-env</id>
             <activation>
                 <property>
                     <name>env.DOCKER_HOST</name>
diff --git a/components/camel-aws2-kms/src/test/java/org/apache/camel/component/aws2/kms/localstack/Aws2KmsBaseTest.java b/components/camel-aws2-kms/src/test/java/org/apache/camel/component/aws2/kms/localstack/Aws2KmsBaseTest.java
index 31d4c81..d4bbc657 100644
--- a/components/camel-aws2-kms/src/test/java/org/apache/camel/component/aws2/kms/localstack/Aws2KmsBaseTest.java
+++ b/components/camel-aws2-kms/src/test/java/org/apache/camel/component/aws2/kms/localstack/Aws2KmsBaseTest.java
@@ -33,7 +33,7 @@ import software.amazon.awssdk.services.kms.KmsClient;
 public class Aws2KmsBaseTest extends ContainerAwareTestSupport {
 
     public static final String CONTAINER_IMAGE = "localstack/localstack:0.11.5";
-    public static final String CONTAINER_NAME = "eventbridge";
+    public static final String CONTAINER_NAME = "kms";
 
     @Override
     protected GenericContainer<?> createContainer() {