HBASE-24669 Logging of ppid should be consistent across all occurrences
Signed-off-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Nick Dimiduk <ndimiduk@apache.org> Signed-off-by: stack <stack@apache.org>
This commit is contained in:
parent
568d73d7db
commit
18d2c72207
|
@ -1841,8 +1841,8 @@ public class ProcedureExecutor<TEnvironment> {
|
||||||
// children have completed, move parent to front of the queue.
|
// children have completed, move parent to front of the queue.
|
||||||
store.update(parent);
|
store.update(parent);
|
||||||
scheduler.addFront(parent);
|
scheduler.addFront(parent);
|
||||||
LOG.info("Finished subprocedure pid={}, resume processing parent {}",
|
LOG.info("Finished subprocedure pid={}, resume processing ppid={}",
|
||||||
procedure.getProcId(), parent);
|
procedure.getProcId(), parent.getProcId());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue