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
5480f350c2
commit
56f32ea895
|
@ -1843,7 +1843,8 @@ public class ProcedureExecutor<TEnvironment> {
|
|||
// children have completed, move parent to front of the queue.
|
||||
store.update(parent);
|
||||
scheduler.addFront(parent);
|
||||
LOG.info("Finished subprocedure(s) of " + parent + "; resume parent processing.");
|
||||
LOG.info("Finished subprocedure pid={}, resume processing ppid={}",
|
||||
procedure.getProcId(), parent.getProcId());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue