HBASE-13232 ConnectionManger : Batch pool threads and metaLookup pool threads should use different name pattern.

This commit is contained in:
anoopsjohn 2015-03-13 22:51:29 +05:30
parent fbe7322870
commit 0f69ea409f
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ final class ConnectionManager {
keepAliveTime,
TimeUnit.SECONDS,
workQueue,
Threads.newDaemonThreadFactory(toString() + "-shared-"));
Threads.newDaemonThreadFactory(toString() + nameHint));
tpe.allowCoreThreadTimeOut(true);
return tpe;
}