소스 검색

MAPREDUCE-4165. Committing is misspelled as commiting in task logs (John Eagles via bobby)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1328086 13f79535-47bb-0310-9956-ffa450edef68
Robert Joseph Evans 13 년 전
부모
커밋
5b35f7df64

+ 3 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -373,6 +373,9 @@ Release 0.23.3 - UNRELEASED
     MAPREDUCE-4159. Job is running in Uber mode after setting 
     "mapreduce.job.ubertask.maxreduces" to zero (Devaraj K via bobby)
 
+    MAPREDUCE-4165. Committing is misspelled as commiting in task logs
+    (John Eagles via bobby)
+
 Release 0.23.2 - UNRELEASED
 
   INCOMPATIBLE CHANGES

+ 1 - 1
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java

@@ -964,7 +964,7 @@ abstract public class Task implements Writable, Configurable {
                    TaskReporter reporter
                    ) throws IOException, InterruptedException {
     LOG.info("Task:" + taskId + " is done."
-             + " And is in the process of commiting");
+             + " And is in the process of committing");
     updateCounters();
 
     boolean commitRequired = isCommitRequired();