Skip to content

Commit

Permalink
libs: bump zookeeper and curator versions to 3.8.4 and 5.7.0
Browse files Browse the repository at this point in the history
keep dependencies up-to-date

Acked-by: Lea Morschel
Acked-by: Karen Hoyos
Target: master
Require-book: no
Require-notes: yes
  • Loading branch information
kofemann committed Jul 25, 2024
1 parent 0d2629a commit fb1d797
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
import org.apache.curator.framework.state.ConnectionStateListener;
import org.apache.curator.utils.EnsurePath;
import org.apache.curator.utils.ThreadUtils;
import org.apache.curator.utils.ZookeeperCompatibility;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.Watcher;
Expand Down Expand Up @@ -343,6 +344,11 @@ public CuratorZookeeperClient getZookeeperClient() {
return inner.getZookeeperClient();
}

@Override
public ZookeeperCompatibility getZookeeperCompatibility() {
return inner.getZookeeperCompatibility();
}

@Override
@Deprecated
public EnsurePath newNamespaceAwareEnsurePath(String path) {
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>5.6.0</version>
<version>5.7.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand All @@ -178,7 +178,7 @@
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.7.2</version>
<version>3.8.4</version>
<exclusions>
<exclusion>
<groupId>com.sun.jmx</groupId>
Expand Down

0 comments on commit fb1d797

Please sign in to comment.