HBASE-4787 Rename HTable thread pool

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1205684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nicolas Spiegelberg 2011-11-24 00:46:05 +00:00
parent d3da94321c
commit 2fb8275da0
1 changed files with 1 additions and 1 deletions

View File

@ -1437,7 +1437,7 @@ public class HTable implements HTableInterface, Closeable {
SecurityManager s = System.getSecurityManager();
group = (s != null)? s.getThreadGroup() :
Thread.currentThread().getThreadGroup();
namePrefix = "pool-" +
namePrefix = "hbase-table-pool" +
poolNumber.getAndIncrement() +
"-thread-";
}