You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2020/07/29 13:36:33 UTC

[hbase] branch branch-2.3 updated: HBASE-24669 Logging of ppid should be consistent across all occurrences

This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 25f1432  HBASE-24669 Logging of ppid should be consistent across all occurrences
25f1432 is described below

commit 25f143230fc2b85c19b0307b25c5e7922c9f27e4
Author: niuyulin <ni...@xiaomi.com>
AuthorDate: Sun Jul 5 10:32:19 2020 +0800

    HBASE-24669 Logging of ppid should be consistent across all occurrences
    
    Signed-off-by: Viraj Jasani <vj...@apache.org>
    Signed-off-by: Nick Dimiduk <nd...@apache.org>
    Signed-off-by: stack <st...@apache.org>
---
 .../java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 46573b0..2a05207 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
@@ -1841,8 +1841,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 pid={}, resume processing parent {}",
-          procedure.getProcId(), parent);
+      LOG.info("Finished subprocedure pid={}, resume processing ppid={}",
+        procedure.getProcId(), parent.getProcId());
       return;
     }
   }