HBASE-10670 HBaseFsck#connect() should use new connection
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1574588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1500ae9438
commit
ddaf9b7701
|
@ -302,10 +302,10 @@ public class HBaseFsck extends Configured {
|
|||
* online state.
|
||||
*/
|
||||
public void connect() throws IOException {
|
||||
admin = new HBaseAdmin(getConf());
|
||||
meta = new HTable(getConf(), TableName.META_TABLE_NAME);
|
||||
connection = HConnectionManager.createConnection(getConf());
|
||||
admin = new HBaseAdmin(connection);
|
||||
meta = new HTable(TableName.META_TABLE_NAME, connection);
|
||||
status = admin.getClusterStatus();
|
||||
connection = admin.getConnection();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue