You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by li...@apache.org on 2017/09/19 02:16:46 UTC

hbase git commit: HBASE-15931 Add log for long-running tasks in AsyncProcess (addendum)

Repository: hbase
Updated Branches:
  refs/heads/master 34d648808 -> b56760c73


HBASE-15931 Add log for long-running tasks in AsyncProcess (addendum)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b56760c7
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b56760c7
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b56760c7

Branch: refs/heads/master
Commit: b56760c732f4f72fcc3734cb0133262198d0889c
Parents: 34d6488
Author: Yu Li <li...@apache.org>
Authored: Fri Sep 8 11:38:00 2017 +0800
Committer: Yu Li <li...@apache.org>
Committed: Tue Sep 19 09:54:51 2017 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b56760c7/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
index f2d8d74..5e0da59 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
@@ -448,7 +448,7 @@ class AsyncProcess {
       LOG.info("#" + id + (max < 0 ? ", waiting for any free slot"
       : ", waiting for some tasks to finish. Expected max="
       + max) + ", tasksInProgress=" + currentInProgress +
-      " hasError=" + hasError() + tableName == null ? "" : ", tableName=" + tableName);
+      " hasError=" + hasError() + (tableName == null ? "" : ", tableName=" + tableName));
     };
   }