HBASE-13518 Typo in hbase.hconnection.meta.lookup.threads.core parameter (Devaraj Das)

This commit is contained in:
Nick Dimiduk 2015-04-27 23:01:05 -07:00
parent a725044644
commit 75bb815d99
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ class ConnectionImplementation implements ClusterConnection, Closeable {
//the queue is full, a new thread will be started //the queue is full, a new thread will be started
this.metaLookupPool = getThreadPool( this.metaLookupPool = getThreadPool(
conf.getInt("hbase.hconnection.meta.lookup.threads.max", 128), conf.getInt("hbase.hconnection.meta.lookup.threads.max", 128),
conf.getInt("hbase.hconnection.meta.lookup.threads.max.core", 10), conf.getInt("hbase.hconnection.meta.lookup.threads.core", 10),
"-metaLookup-shared-", new LinkedBlockingQueue<Runnable>()); "-metaLookup-shared-", new LinkedBlockingQueue<Runnable>());
} }
} }