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

zhangduo pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-3 by this push:
     new 40314d71744 HBASE-29570 Set no watches on the node when recursively 
deleting the node and its child nodes (#7271)
40314d71744 is described below

commit 40314d71744dc5e9e070059b947f3dcbe13ff42c
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]>
    (cherry picked from commit 64a192197c313a43f008c692bbe935f347c77dba)
---
 .../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) {

Reply via email to