HDFS-6558. Missing newline in the description of dfsadmin -rollingUpgrade. Contributed by Chen He.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1606855 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kihwal Lee 2014-06-30 18:17:56 +00:00
parent e5ae7c55d1
commit e8186a9dee
2 changed files with 4 additions and 1 deletions

View File

@ -736,6 +736,9 @@ Release 2.5.0 - UNRELEASED
HDFS-6418. Regression: DFS_NAMENODE_USER_NAME_KEY missing HDFS-6418. Regression: DFS_NAMENODE_USER_NAME_KEY missing
(szetszwo via stevel) (szetszwo via stevel)
HDFS-6558. Missing newline in the description of dfsadmin -rollingUpgrade.
(Chen He via kihwal)
BREAKDOWN OF HDFS-2006 SUBTASKS AND RELATED JIRAS BREAKDOWN OF HDFS-2006 SUBTASKS AND RELATED JIRAS
HDFS-6299. Protobuf for XAttr and client-side implementation. (Yi Liu via umamahesh) HDFS-6299. Protobuf for XAttr and client-side implementation. (Yi Liu via umamahesh)

View File

@ -293,7 +293,7 @@ public class DFSAdmin extends FsShell {
static final String USAGE = "-"+NAME+" [<query|prepare|finalize>]"; static final String USAGE = "-"+NAME+" [<query|prepare|finalize>]";
static final String DESCRIPTION = USAGE + ":\n" static final String DESCRIPTION = USAGE + ":\n"
+ " query: query the current rolling upgrade status.\n" + " query: query the current rolling upgrade status.\n"
+ " prepare: prepare a new rolling upgrade." + " prepare: prepare a new rolling upgrade.\n"
+ " finalize: finalize the current rolling upgrade."; + " finalize: finalize the current rolling upgrade.";
/** Check if a command is the rollingUpgrade command /** Check if a command is the rollingUpgrade command