HDFS-9387. Fix namenodeUri parameter parsing in NNThroughputBenchmark. Contributed by Mingliang Liu.

This commit is contained in:
Xiaoyu Yao 2015-11-16 16:29:47 -08:00
parent 02653add98
commit 2701f2d255
2 changed files with 9 additions and 4 deletions

View File

@ -2305,6 +2305,9 @@ Release 2.8.0 - UNRELEASED
HDFS-9413. getContentSummary() on standby should throw StandbyException. HDFS-9413. getContentSummary() on standby should throw StandbyException.
(Brahma Reddy Battula via mingma) (Brahma Reddy Battula via mingma)
HDFS-9387. Fix namenodeUri parameter parsing in NNThroughputBenchmark.
(Mingliang Liu via xyao)
Release 2.7.3 - UNRELEASED Release 2.7.3 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -382,10 +382,12 @@ public class NNThroughputBenchmark implements Tool {
args.remove(ugrcIndex); args.remove(ugrcIndex);
} }
try { if (args.indexOf("-namenode") >= 0) {
namenodeUri = StringUtils.popOptionWithArgument("-namenode", args); try {
} catch (IllegalArgumentException iae) { namenodeUri = StringUtils.popOptionWithArgument("-namenode", args);
printUsage(); } catch (IllegalArgumentException iae) {
printUsage();
}
} }
String type = args.get(1); String type = args.get(1);