git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1@1554568 13f79535-47bb-0310-9956-ffa450edef68
@@ -172,6 +172,9 @@ Release 1.3.0 - unreleased
HADOOP-10090. Jobtracker metrics not updated properly after execution of
a mapreduce job (ivanmi)
+ MAPREDUCE-5702. TaskLogServlet.printTaskLog() has spurious HTML closing
+ tags (rkanter via kasha)
+
Release 1.2.2 - unreleased
INCOMPATIBLE CHANGES
@@ -96,7 +96,7 @@ public class TaskLogServlet extends HttpServlet {
}
taskLogReader.close();
if( !plainText ) {
- out.write("</pre></td></tr></table><hr><br>\n".getBytes());
+ out.write("</pre><hr><br>\n".getBytes());
} catch (IOException ioe) {
if (filter == TaskLog.LogName.DEBUGOUT) {