HBASE-1215 migration; fixes for jgray -- make HStoreFileToStoreFile implement Tool so can pass params
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@797236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
97b6100e54
commit
7ddaccdd61
|
@ -133,8 +133,9 @@ public class HStoreFileToStoreFile extends Configured implements Tool {
|
|||
// look in the 'mapfile' subdir.
|
||||
Path mfsdir = new Path(family, "mapfiles");
|
||||
FileStatus [] familyStatus = fs.listStatus(mfsdir);
|
||||
if (familyStatus.length > 1) {
|
||||
LOG.warn(family.toString() + " has " + familyStatus.length +
|
||||
if (familyStatus == null || familyStatus.length > 1) {
|
||||
LOG.warn(family.toString() + " has " +
|
||||
((familyStatus == null) ? "null": familyStatus.length) +
|
||||
" files. Continuing...");
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue