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

[hbase] branch branch-2.2 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.

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


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

commit 3fedb7c172267f763c4b29429ba0088e5e53bb4d
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 c680ade..7ebecdc 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
@@ -972,7 +972,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);
       }