You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2020/10/05 04:41:26 UTC

[hbase] branch branch-2.3 updated: HBASE-25048 [HBCK2] Bypassed parent procedures are not updated in store (#2410)

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

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


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 0a3b6f4  HBASE-25048 [HBCK2] Bypassed parent procedures are not updated in store (#2410)
0a3b6f4 is described below

commit 0a3b6f451fb3352894bd850fba1858f7b17d8d7b
Author: Joseph295 <51...@qq.com>
AuthorDate: Mon Oct 5 12:39:27 2020 +0800

    HBASE-25048 [HBCK2] Bypassed parent procedures are not updated in store (#2410)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
    Signed-off-by: stack <st...@apache.org>
---
 .../main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java b/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java
index 2a05207..38d5e2b 100644
--- a/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java
+++ b/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java
@@ -979,7 +979,7 @@ public class ProcedureExecutor<TEnvironment> {
       while (current != null) {
         LOG.debug("Bypassing {}", current);
         current.bypass(getEnvironment());
-        store.update(procedure);
+        store.update(current);
         long parentID = current.getParentProcId();
         current = getProcedure(parentID);
       }