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:39:49 UTC

[hbase] branch master 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 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 a8096b3  HBASE-25048 [HBCK2] Bypassed parent procedures are not updated in store (#2410)
a8096b3 is described below

commit a8096b3ac39b2872ed17e4359255ac42516525ac
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 f885785..b99f544 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
@@ -981,7 +981,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);
       }