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:23:31 UTC

[camel] branch camel-3.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.x
in repository https://gitbox.apache.org/repos/asf/camel.git


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

commit 3f602cadbacc4f7b3f09cdd3709e438e231e0735
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 81feae3a5c4..540c843578d 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());