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

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

commit 3b6becab8a2ce007f180aca8c3ac64b33958562f
Author: Andrea Tarocchi <andrea.taroc...@gmail.com>
AuthorDate: Thu Feb 11 01:51:16 2021 +0100

    Minor fixes in tests image names usein 'camel' ad the version instead of 
'ckc'.
---
 .../org/apache/camel/test/infra/artemis/services/ArtemisContainer.java  | 2 +-
 .../apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
 
b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
index d1fb6b4..77c95c6 100644
--- 
a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
+++ 
b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
@@ -32,7 +32,7 @@ public class ArtemisContainer extends 
GenericContainer<ArtemisContainer> impleme
     private static final String FROM_IMAGE_ARG = "FROMIMAGE";
 
     public ArtemisContainer() {
-        super(new ImageFromDockerfile("localhost/apache-artemis:ckc", false)
+        super(new ImageFromDockerfile("localhost/apache-artemis:camel", false)
                 .withFileFromClasspath("Dockerfile",
                         
"org/apache/camel/test/infra/artemis/services/Dockerfile")
                 .withBuildArg(FROM_IMAGE_ARG, 
TestUtils.prependHubImageNamePrefixIfNeeded(FROM_IMAGE_NAME)));
diff --git 
a/test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java
 
b/test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java
index 402599f..6fafadf 100644
--- 
a/test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java
+++ 
b/test-infra/camel-test-infra-hdfs/src/test/java/org/apache/camel/test/infra/hdfs/v2/services/HadoopBaseContainer.java
@@ -28,7 +28,7 @@ abstract class HadoopBaseContainer<T extends 
GenericContainer<T>> extends Generi
     private static final String FROM_IMAGE_ARG = "FROMIMAGE";
 
     public HadoopBaseContainer(Network network, String name) {
-        super(new ImageFromDockerfile("localhost/hadoop-2x:ckc", false)
+        super(new ImageFromDockerfile("localhost/hadoop-2x:camel", false)
                 .withFileFromClasspath(".",
                         "org/apache/camel/test/infra/hdfs/v2/services/")
                 .withBuildArg(FROM_IMAGE_BUILDER_ARG, 
TestUtils.prependHubImageNamePrefixIfNeeded(FROM_IMAGE_NAME))

Reply via email to