git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@570937 13f79535-47bb-0310-9956-ffa450edef68
@@ -137,6 +137,9 @@ Release 0.14.1 - (unreleased)
HADOOP-1790. Fix tasktracker to work correctly on multi-homed
boxes. (Torsten Curdt via cutting)
+ HADOOP-1798. Fix jobtracker to correctly account for failed
+ tasks. (omalley via cutting)
+
Release 0.14.0 - 2007-08-17
@@ -1226,7 +1226,7 @@ public class JobTracker implements MRConstants, InterTrackerProtocol, JobSubmiss
// If not first contact, there should be some record of the tracker
if (!seenBefore) {
LOG.warn("Status from unknown Tracker : " + trackerName);
- taskTrackers.remove(trackerName);
+ updateTaskTrackerStatus(trackerName, null);
return false;
}