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:35:30 UTC

[hbase] branch branch-2 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
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit 18d2c72207ba28241bb74c8de182868f9c16fd17
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;
     }
   }