HADOOP-11719.[Fsshell] Remove bin/hadoop reference from GenericOptionsParser default help text. Contributed by Brahma Reddy Battula.

(cherry picked from commit 1ede5e6e1e7f51cf13d0488bb1b0e126c865656c)
This commit is contained in:
Harsh J 2015-03-26 11:27:21 +05:30
parent 6e9202c802
commit c33ecd83e4
2 changed files with 5 additions and 1 deletions

View File

@ -14,6 +14,10 @@ Release 2.8.0 - UNRELEASED
IMPROVEMENTS
HADOOP-11719. [Fsshell] Remove bin/hadoop reference from
GenericOptionsParser default help text.
(Brahma Reddy Battula via harsh)
HADOOP-11692. Improve authentication failure WARN message to avoid user
confusion. (Yongjun Zhang)

View File

@ -513,7 +513,7 @@ public static void printGenericCommandUsage(PrintStream out) {
"specify comma separated archives to be unarchived" +
" on the compute machines.\n");
out.println("The general command line syntax is");
out.println("bin/hadoop command [genericOptions] [commandOptions]\n");
out.println("command [genericOptions] [commandOptions]\n");
}
}