HDFS-5111. Merge change r1515895 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1515896 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
42d21469ef
commit
b7567168db
|
@ -79,7 +79,7 @@ class SnapshotCommands extends FsCommand {
|
|||
protected void processArguments(LinkedList<PathData> items)
|
||||
throws IOException {
|
||||
super.processArguments(items);
|
||||
if (exitCode != 0) { // check for error collecting paths
|
||||
if (numErrors != 0) { // check for error collecting paths
|
||||
return;
|
||||
}
|
||||
assert(items.size() == 1);
|
||||
|
@ -119,7 +119,7 @@ class SnapshotCommands extends FsCommand {
|
|||
protected void processArguments(LinkedList<PathData> items)
|
||||
throws IOException {
|
||||
super.processArguments(items);
|
||||
if (exitCode != 0) { // check for error collecting paths
|
||||
if (numErrors != 0) { // check for error collecting paths
|
||||
return;
|
||||
}
|
||||
assert (items.size() == 1);
|
||||
|
@ -160,7 +160,7 @@ class SnapshotCommands extends FsCommand {
|
|||
protected void processArguments(LinkedList<PathData> items)
|
||||
throws IOException {
|
||||
super.processArguments(items);
|
||||
if (exitCode != 0) { // check for error collecting paths
|
||||
if (numErrors != 0) { // check for error collecting paths
|
||||
return;
|
||||
}
|
||||
Preconditions.checkArgument(items.size() == 1);
|
||||
|
|
|
@ -93,6 +93,9 @@ Release 2.1.1-beta - UNRELEASED
|
|||
HDFS-2933. Improve DataNode Web UI Index Page. (Vivek Ganesan via
|
||||
Arpit Agarwal)
|
||||
|
||||
HDFS-5111. Remove duplicated error message for snapshot commands when
|
||||
processing invalid arguments. (jing9)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
Loading…
Reference in New Issue