Browse Source

HADOOP-10946. Fix a bunch of typos in log messages (Ray Chiang via aw)

(cherry picked from commit 9f03a7c018bb2c497cd0ef758f1a3e08e8163d06)

Conflicts:
	hadoop-common-project/hadoop-common/CHANGES.txt
Allen Wittenauer 10 years ago
parent
commit
9a2e4f4f98

+ 2 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -244,6 +244,8 @@ Release 2.7.0 - UNRELEASED
     NativeAzureFileSystem#NativeAzureFsInputStream#close().
     (Chen He via cnauroth)
 
+    HADOOP-10946. Fix a bunch of typos in log messages (Ray Chiang via aw)
+
 Release 2.6.0 - 2014-11-18
 
   INCOMPATIBLE CHANGES

+ 1 - 1
hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java

@@ -1095,7 +1095,7 @@ public class NativeAzureFileSystem extends FileSystem {
       if (dstKey.startsWith(srcKey + PATH_DELIMITER)) {
 
         if (LOG.isDebugEnabled()) {
-          LOG.debug("Renaming directory to a itself is disallowed. src=" + src
+          LOG.debug("Renaming directory to itself is disallowed. src=" + src
               + " dest=" + dst);
         }
         return false;