HADOOP-8431. Running distcp wo args throws IllegalArgumentException. Contributed by Sandy Ryza
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1381840 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e4679b5caf
commit
404ab8ec66
|
@ -476,6 +476,9 @@ Branch-2 ( Unreleased changes )
|
|||
HADOOP-8749. HADOOP-8031 changed the way in which relative xincludes are handled in
|
||||
Configuration. (ahmed via tucu)
|
||||
|
||||
HADOOP-8431. Running distcp wo args throws IllegalArgumentException.
|
||||
(Sandy Ryza via eli)
|
||||
|
||||
BREAKDOWN OF HDFS-3042 SUBTASKS
|
||||
|
||||
HADOOP-8220. ZKFailoverController doesn't handle failure to become active
|
||||
|
|
|
@ -98,6 +98,11 @@ public class DistCp extends Configured implements Tool {
|
|||
* @return On success, it returns 0. Else, -1.
|
||||
*/
|
||||
public int run(String[] argv) {
|
||||
if (argv.length < 1) {
|
||||
OptionsParser.usage();
|
||||
return DistCpConstants.INVALID_ARGUMENT;
|
||||
}
|
||||
|
||||
try {
|
||||
inputOptions = (OptionsParser.parse(argv));
|
||||
|
||||
|
|
Loading…
Reference in New Issue