You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/10/12 05:11:06 UTC

[camel] branch main updated: Upgrade to zookeeper 3.9.1 (#11703)

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

acosentino 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 fa530bc5fc1 Upgrade to zookeeper 3.9.1 (#11703)
fa530bc5fc1 is described below

commit fa530bc5fc194724303cd6701bbc4f573927e539
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 12 07:10:57 2023 +0200

    Upgrade to zookeeper 3.9.1 (#11703)
---
 parent/pom.xml                                                          | 2 +-
 .../apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 1424c577b00..e361dbae8d6 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -474,7 +474,7 @@
         <yetus-audience-annotations-version>0.14.1</yetus-audience-annotations-version>
         <zeebe.version>8.2.11</zeebe.version>
         <zendesk-client-version>0.23.0</zendesk-client-version>
-        <zookeeper-version>3.9.0</zookeeper-version>
+        <zookeeper-version>3.9.1</zookeeper-version>
         <zxing-version>3.5.2</zxing-version>
     </properties>
 
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 8d7bce7b716..b7facfb8ba6 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
@@ -23,7 +23,7 @@ import org.testcontainers.containers.output.Slf4jLogConsumer;
 import org.testcontainers.containers.wait.strategy.Wait;
 
 public class ZooKeeperContainer extends GenericContainer {
-    public static final String CONTAINER_IMAGE = "zookeeper:3.8";
+    public static final String CONTAINER_IMAGE = "zookeeper:3.9";
     public static final String CONTAINER_NAME = "zookeeper";
     public static final int CLIENT_PORT = 2181;