HADOOP-18661. Fix bin/hadoop usage script terminology. (#5473)

Followup to HADOOP-13209: s/slaves/r/workers in
the usage message you get when you type "bin/hadoop"

Contributed by Steve Loughran
This commit is contained in:
Steve Loughran 2023-03-13 12:23:06 +00:00
parent d7b89d08e1
commit 0dd4e500b0
No known key found for this signature in database
GPG Key ID: D22CF846DBB162A0
2 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ MYNAME="${BASH_SOURCE-$0}"
function hadoop_usage function hadoop_usage
{ {
hadoop_add_option "buildpaths" "attempt to add class files from build tree" hadoop_add_option "buildpaths" "attempt to add class files from build tree"
hadoop_add_option "hostnames list[,of,host,names]" "hosts to use in slave mode" hadoop_add_option "hostnames list[,of,host,names]" "hosts to use in worker mode"
hadoop_add_option "loglevel level" "set the log4j level for this command" hadoop_add_option "loglevel level" "set the log4j level for this command"
hadoop_add_option "hosts filename" "list of hosts to use in slave mode" hadoop_add_option "hosts filename" "list of hosts to use in worker mode"
hadoop_add_option "workers" "turn on worker mode" hadoop_add_option "workers" "turn on worker mode"
hadoop_add_subcommand "checknative" client "check native Hadoop and compression libraries availability" hadoop_add_subcommand "checknative" client "check native Hadoop and compression libraries availability"

View File

@ -16,7 +16,7 @@
# limitations under the License. # limitations under the License.
# Run a Hadoop command on all slave hosts. # Run a Hadoop command on all worker hosts.
function hadoop_usage function hadoop_usage
{ {