Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1149B200D14 for ; Tue, 19 Sep 2017 04:17:07 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0FF8B1609DE; Tue, 19 Sep 2017 02:17:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 577431609DB for ; Tue, 19 Sep 2017 04:17:06 +0200 (CEST) Received: (qmail 5992 invoked by uid 500); 19 Sep 2017 02:17:05 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 5978 invoked by uid 99); 19 Sep 2017 02:17:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Sep 2017 02:17:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5E267F565D; Tue, 19 Sep 2017 02:17:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: liyu@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-15931 Add log for long-running tasks in AsyncProcess (addendum) Date: Tue, 19 Sep 2017 02:17:05 +0000 (UTC) archived-at: Tue, 19 Sep 2017 02:17:07 -0000 Repository: hbase Updated Branches: refs/heads/branch-2 00d9e3847 -> 52c809c35 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/52c809c3 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/52c809c3 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/52c809c3 Branch: refs/heads/branch-2 Commit: 52c809c35e2abaa9e9b21b2a5fb775b2edbcf0f0 Parents: 00d9e38 Author: Yu Li Authored: Fri Sep 8 11:38:00 2017 +0800 Committer: Yu Li Committed: Tue Sep 19 09:55:11 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/52c809c3/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)); }; }