You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/01/26 09:49:46 UTC

[camel] branch main updated: upgrade testcontainers to use kafka container 7.0.1

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 9b8855c  upgrade testcontainers to use kafka container 7.0.1
9b8855c is described below

commit 9b8855c3762ce112df51e984ce2b438ec54635dc
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jan 26 09:57:26 2022 +0100

    upgrade testcontainers to use kafka container 7.0.1
---
 .../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 37fdd74..bd3f00a 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
@@ -72,7 +72,7 @@ public class ContainerLocalKafkaService implements KafkaService, ContainerServic
     }
 
     public static ContainerLocalKafkaService kafka3Container() {
-        KafkaContainer container = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:7.0.0"));
+        KafkaContainer container = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:7.0.1"));
         container = container.withEmbeddedZookeeper();
 
         return new ContainerLocalKafkaService(container);