HADOOP-12755. Fix typo in defaultFS warning message.

(cherry picked from commit 8171874dd1)
(cherry picked from commit b4ad58796b)
This commit is contained in:
Andrew Wang 2016-02-02 11:56:37 -08:00
parent 1d322ca5cc
commit 1d15c90233
3 changed files with 4 additions and 2 deletions

View File

@ -382,6 +382,8 @@ Release 2.8.0 - UNRELEASED
HADOOP-12696. Add tests for S3Filesystem Contract (Matt Paduano via raviprak)
HADOOP-12755. Fix typo in defaultFS warning message. (wang)
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -112,7 +112,7 @@ protected void processRawArguments(LinkedList<String> args)
defaultFs == null || defaultFs.equals(FS_DEFAULT_NAME_DEFAULT);
if (missingDefaultFs) {
err.printf(
"Warning: fs.defaultFs is not set when running \"%s\" command.%n",
"Warning: fs.defaultFS is not set when running \"%s\" command.%n",
getCommandName());
}
}

View File

@ -1062,7 +1062,7 @@ private static void displayWarningOnLocalFileSystem(boolean shouldDisplay)
ls.err = err;
ls.run("file:///.");
assertEquals(shouldDisplay, buf.toString().contains(
"Warning: fs.defaultFs is not set when running \"ls\" command."));
"Warning: fs.defaultFS is not set when running \"ls\" command."));
}
@Test