You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/24 14:24:13 UTC

[camel] branch camel-3.18.x updated: CAMEL-19294: do use the configured Zookeeper container

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

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


The following commit(s) were added to refs/heads/camel-3.18.x by this push:
     new 37a8c868033 CAMEL-19294: do use the configured Zookeeper container
37a8c868033 is described below

commit 37a8c868033346ac96c4901b5e77b107da35ec4c
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Apr 24 14:03:07 2023 +0200

    CAMEL-19294: do use the configured Zookeeper container
---
 .../apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-zookeeper/src/test/java/org/apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java b/test-infra/camel-test-infra-zookeeper/src/test/java/org/apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java
index 4d90dd323a4..5f9cb12bc6c 100644
--- a/test-infra/camel-test-infra-zookeeper/src/test/java/org/apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java
+++ b/test-infra/camel-test-infra-zookeeper/src/test/java/org/apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java
@@ -48,7 +48,7 @@ public class ZooKeeperContainer extends GenericContainer {
     }
 
     public ZooKeeperContainer(String name, int clientPort) {
-        super(CONTAINER_IMAGE);
+        super(name);
 
         setWaitStrategy(Wait.forListeningPort());