YARN-9036. Escape newlines in health report in YARN UI. Contributed by Keqiu Hu
This commit is contained in:
parent
a3470c65d8
commit
7456da99c1
|
@ -19,6 +19,7 @@
|
|||
package org.apache.hadoop.yarn.server.resourcemanager.webapp;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import org.apache.commons.lang.StringEscapeUtils;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
import org.apache.hadoop.yarn.api.records.NodeState;
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
|
@ -200,8 +201,9 @@ class NodesPage extends RmView {
|
|||
nodeTableData.length() - 1);
|
||||
}
|
||||
nodeTableData.append("]");
|
||||
String nodeTableDataEscaped = StringEscapeUtils.escapeJava(nodeTableData.toString());
|
||||
html.script().$type("text/javascript")
|
||||
._("var nodeTableData=" + nodeTableData)._();
|
||||
._("var nodeTableData=" + nodeTableDataEscaped)._();
|
||||
tbody._()._();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue