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 2018/02/06 14:35:17 UTC

hbase git commit: HBASE-19940 TestMetaShutdownHandler flakey; ADDENDUM: more debug

Repository: hbase
Updated Branches:
  refs/heads/branch-2 fb480775d -> ca6b37d63


HBASE-19940 TestMetaShutdownHandler flakey; ADDENDUM: more debug


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

Branch: refs/heads/branch-2
Commit: ca6b37d63c7392c9d6c8cf3bf4e565e6fd00f264
Parents: fb48077
Author: Michael Stack <st...@apache.org>
Authored: Tue Feb 6 06:34:49 2018 -0800
Committer: Michael Stack <st...@apache.org>
Committed: Tue Feb 6 06:35:02 2018 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ca6b37d6/hbase-server/src/main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java
index 172c170..0d410fc 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/JVMClusterUtil.java
@@ -297,10 +297,10 @@ public class JVMClusterUtil {
         for (RegionServerThread t : regionservers) {
           if (t.isAlive()) {
             LOG.warn("RegionServerThreads taking too long to stop, interrupting; thread dump "  +
-              "if > three attempts");
+              "if > three attempts: i=" + i);
             if (i > 3) {
               try {
-                Threads.threadDumpingIsAlive(t.getRegionServer().getThread());
+                Threads.threadDumpingIsAlive(t);
               } catch (InterruptedException e) {
                 e.printStackTrace();
               }