MAPREDUCE-6382. Don't escape HTML links in Diagnostics in JHS job overview. (Siqi Li via gera)

This commit is contained in:
Gera Shegalov 2015-06-03 23:41:07 -07:00
parent 1bb79c9d01
commit e8302071ff
2 changed files with 4 additions and 1 deletions

View File

@ -447,6 +447,9 @@ Release 2.8.0 - UNRELEASED
high. Error is: "error=7, Argument list too long at if number of input
file is high" (wilfreds via rkanter)
MAPREDUCE-6382. Don't escape HTML links in Diagnostics in JHS job overview.
(Siqi Li via gera)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -101,7 +101,7 @@ public class HsJobBlock extends HtmlBlock {
for(String diag: diagnostics) {
b.append(addTaskLinks(diag));
}
infoBlock._("Diagnostics:", b.toString());
infoBlock._r("Diagnostics:", b.toString());
}
if(job.getNumMaps() > 0) {