(cherry picked from commit 8171874dd198a6d10f48211f311595b222e6b930) (cherry picked from commit b4ad58796b70954804ad96f0c15381ad13e7a8ea)
@@ -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
@@ -112,7 +112,7 @@ abstract public class FsCommand extends Command {
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());
}
@@ -1062,7 +1062,7 @@ public class TestLs {
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