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 GitHub
parent 3226c1795a
commit a8096b3ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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