HBASE-1661 HBASE-1215 partial commit broke trunk, does not compile
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@794282 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
10c33cc48d
commit
4dee3ff2e4
|
@ -295,7 +295,8 @@ public class FSUtils {
|
|||
}
|
||||
});
|
||||
for (int i = 0; i < directories.length; i++) {
|
||||
|
||||
}
|
||||
// TODO: check directories
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -217,7 +217,7 @@ public class Migrate extends Configured implements Tool {
|
|||
return;
|
||||
}
|
||||
// Before we start, make sure all is major compacted.
|
||||
if (!allMajorCompacted()) {
|
||||
if (!isMajorCompacted(fs, conf)) {
|
||||
String msg = "All tables must be major compacted before the migration can begin." +
|
||||
MIGRATION_LINK;
|
||||
System.out.println(msg);
|
||||
|
@ -294,7 +294,7 @@ set to control the master's address (not mandatory).
|
|||
return isdir;
|
||||
}
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue