HBASE-16389 Thread leak in CoprocessorHost#getTable(TableName) API (Ankit Singhal)

This commit is contained in:
tedyu 2016-08-10 19:58:13 -07:00
parent 7e32510513
commit 9e116e048b
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ public abstract class CoprocessorHost<E extends CoprocessorEnvironment> {
*/ */
@Override @Override
public Table getTable(TableName tableName) throws IOException { public Table getTable(TableName tableName) throws IOException {
return this.getTable(tableName, HTable.getDefaultExecutor(getConfiguration())); return this.getTable(tableName, null);
} }
/** /**