HBASE-12791 HBase does not attempt to clean up an aborted split when the regionserver shutting down-addendum(Rajeshbabu)

This commit is contained in:
Rajeshbabu Chintaguntla 2015-01-23 12:41:45 +05:30
parent 5fbf80ee5e
commit e13b9938a1
1 changed files with 1 additions and 1 deletions

View File

@ -2013,7 +2013,7 @@ public class HBaseFsck extends Configured implements Closeable {
TableInfo tableInfo = tablesInfo.get(hri.getTable());
if (tableInfo.regionsFromMeta.isEmpty()) {
for (HbckInfo h : regionInfoMap.values()) {
if (h.getTableName().equals(hri.getTable())) {
if (hri.getTable().equals(h.getTableName())) {
if (h.metaEntry != null) tableInfo.regionsFromMeta
.add((HRegionInfo) h.metaEntry);
}