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

Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: stack <stack@apache.org>
This commit is contained in:
Joseph295 2020-10-05 12:39:27 +08:00 committed by stack
parent 0ab78378a9
commit a04baf5a64
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}