MAPREDUCE-6382. Don't escape HTML links in Diagnostics in JHS job overview. (Siqi Li via gera)
This commit is contained in:
parent
1bb79c9d01
commit
e8302071ff
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue