This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 64a192197c3 HBASE-29570 Set no watches on the node when recursively
deleting the node and its child nodes (#7271)
64a192197c3 is described below
commit 64a192197c313a43f008c692bbe935f347c77dba
Author: Huginn <[email protected]>
AuthorDate: Fri Sep 5 09:50:29 2025 +0800
HBASE-29570 Set no watches on the node when recursively deleting the node
and its child nodes (#7271)
Signed-off-by: Duo Zhang <[email protected]>
---
.../src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java
index 334c12b532f..8d22747b70f 100644
---
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java
+++
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java
@@ -966,7 +966,7 @@ public final class ZKUtil {
ops.add(ZKUtilOp.deleteNodeFailSilent(children.get(i)));
}
try {
- if (zkw.getRecoverableZooKeeper().exists(eachRoot, zkw) != null) {
+ if (zkw.getRecoverableZooKeeper().exists(eachRoot, null) != null) {
ops.add(ZKUtilOp.deleteNodeFailSilent(eachRoot));
}
} catch (InterruptedException e) {