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:
Jonathan Gray 2009-07-15 14:27:10 +00:00
parent 10c33cc48d
commit 4dee3ff2e4
2 changed files with 4 additions and 3 deletions

View File

@ -295,7 +295,8 @@ public class FSUtils {
} }
}); });
for (int i = 0; i < directories.length; i++) { for (int i = 0; i < directories.length; i++) {
// TODO: check directories
} }
return true;
} }
} }

View File

@ -217,7 +217,7 @@ public class Migrate extends Configured implements Tool {
return; return;
} }
// Before we start, make sure all is major compacted. // 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." + String msg = "All tables must be major compacted before the migration can begin." +
MIGRATION_LINK; MIGRATION_LINK;
System.out.println(msg); System.out.println(msg);
@ -294,7 +294,7 @@ set to control the master's address (not mandatory).
return isdir; return isdir;
} }
}); });
return true;
} }
/* /*