HBASE-4918 HTablePool Constructor may cause unintended behavior

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1209210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-12-01 19:44:53 +00:00
parent 9581eea546
commit 1e2757e33b
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class HTablePool implements Closeable {
*/
public HTablePool(final Configuration config, final int maxSize,
final HTableInterfaceFactory tableFactory) {
this(config, maxSize, null, PoolType.Reusable);
this(config, maxSize, tableFactory, PoolType.Reusable);
}
/**