Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
2.0.0-alpha, 1.1.2
-
None
-
Reviewed
Description
typo:
Index: src/core/org/apache/hadoop/fs/FileUtil.java =================================================================== --- src/core/org/apache/hadoop/fs/FileUtil.java (revision 1467295) +++ src/core/org/apache/hadoop/fs/FileUtil.java (working copy) @@ -178,7 +178,7 @@ // Check if dest is directory if (!dstFS.exists(dst)) { throw new IOException("`" + dst +"': specified destination directory " + - "doest not exist"); + "does not exist"); } else { FileStatus sdst = dstFS.getFileStatus(dst); if (!sdst.isDir())
Attachments
Attachments
Issue Links
- relates to
-
HADOOP-9492 Fix the typo in testConf.xml to make it consistent with FileUtil#copy()
- Closed