YARN-8182. [UI2] Proxy- Clicking on nodes under Nodes HeatMap gives 401 error. Contributed by Sunil G.
This commit is contained in:
parent
da5bcf5f7d
commit
87e09859f1
@ -228,8 +228,8 @@ export default BaseChartComponent.extend({
|
|||||||
rect.attr("fill", "DimGray");
|
rect.attr("fill", "DimGray");
|
||||||
}
|
}
|
||||||
var node_id = data.get("id"),
|
var node_id = data.get("id"),
|
||||||
node_addr = data.get("nodeHTTPAddress"),
|
node_addr = encodeURIComponent(data.get("nodeHTTPAddress")),
|
||||||
href = `#/yarn-node/${node_id}/${node_addr}`;
|
href = `#/yarn-node/${node_id}/${node_addr}/info`;
|
||||||
var a = g.append("a")
|
var a = g.append("a")
|
||||||
.attr("href", href);
|
.attr("href", href);
|
||||||
a.append("text")
|
a.append("text")
|
||||||
|
Loading…
Reference in New Issue
Block a user