You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/05/29 19:26:37 UTC

[camel] branch camel-3.20.x updated: CAMEL-19401: camel-test-infra-kafka - Fix Kafka docker image name (#10235)

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

nfilotto pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
     new 5030fedef24 CAMEL-19401: camel-test-infra-kafka - Fix Kafka docker image name (#10235)
5030fedef24 is described below

commit 5030fedef249226e11058f397417563ff8bb2654
Author: Nicolas Filotto <es...@users.noreply.github.com>
AuthorDate: Mon May 29 21:26:30 2023 +0200

    CAMEL-19401: camel-test-infra-kafka - Fix Kafka docker image name (#10235)
    
    ## Motivation
    
    The name of the docker image of Kafka is misspelled
    
    ## Modifications:
    
    * Fixes the typo
---
 .../camel/test/infra/kafka/services/ContainerLocalKafkaService.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
index 30b710fee4e..f776398b474 100644
--- a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
+++ b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
@@ -25,7 +25,7 @@ import org.testcontainers.containers.KafkaContainer;
 import org.testcontainers.utility.DockerImageName;
 
 public class ContainerLocalKafkaService implements KafkaService, ContainerService<KafkaContainer> {
-    public static final String KAFKA3_IMAGE_NAME = "confluentinc/cp-kafkai:7.3.2";
+    public static final String KAFKA3_IMAGE_NAME = "confluentinc/cp-kafka:7.3.2";
 
     private static final Logger LOG = LoggerFactory.getLogger(ContainerLocalKafkaService.class);
     private final KafkaContainer kafka;