Browse Source

MAPREDUCE-2852. Jira for YDH bug 2854624. Contributed by Kihwal Lee

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20-security@1159417 13f79535-47bb-0310-9956-ffa450edef68
Eli Collins 14 years ago
parent
commit
6597d68ff9

+ 3 - 1
CHANGES.txt

@@ -66,7 +66,9 @@ Release 0.20.205.0 - unreleased
   
     MAPREDUCE-2489. Jobsplits with random hostnames can make the queue unusable
     (Jeffrey Naisbit via mahadev)
-    
+
+    MAPREDUCE-2852. Jira for YDH bug 2854624. (Kihwal Lee via eli)
+
 Release 0.20.204.0 - unreleased
 
   NEW FEATURES

+ 1 - 1
src/mapred/org/apache/hadoop/mapred/DefaultTaskController.java

@@ -114,7 +114,7 @@ public class DefaultTaskController extends TaskController {
       }
       //read the configuration for the job
       FileSystem rawFs = FileSystem.getLocal(getConf()).getRaw();
-      long logSize = 0; //TODO: Ref BUG:2854624
+      long logSize = 0; //TODO MAPREDUCE-1100
       // get the JVM command line.
       String cmdLine = 
         TaskLog.buildCommandLine(setup, jvmArguments,

+ 1 - 1
src/mapred/org/apache/hadoop/mapred/LinuxTaskController.java

@@ -204,7 +204,7 @@ class LinuxTaskController extends TaskController {
     ShellCommandExecutor shExec = null;
     try {
       FileSystem rawFs = FileSystem.getLocal(getConf()).getRaw();
-      long logSize = 0; //TODO, Ref BUG:2854624
+      long logSize = 0; //TODO MAPREDUCE-1100
       // get the JVM command line.
       String cmdLine = 
         TaskLog.buildCommandLine(setup, jvmArguments,