HBASE-17197 hfile does not work in 2.0

Files can be specified with -f option or without it.

Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
Balazs Meszaros 2017-01-31 12:11:52 -08:00 committed by Michael Stack
parent ccd5b9f873
commit 81956aa446

View File

@ -234,6 +234,9 @@ public class HFilePrettyPrinter extends Configured implements Tool {
}
mobFileLocations = new HashMap<String, List<Path>>();
}
cmd.getArgList().forEach((file) -> files.add(new Path(file)));
return true;
}