YARN-7120. CapacitySchedulerPage NPE in "Aggregate scheduler counts" section. Contributed by Eric Payne
(cherry picked from commit 99a7f5d451
)
This commit is contained in:
parent
119220b88f
commit
57b5b186ce
|
@ -556,8 +556,12 @@ class CapacitySchedulerPage extends RmView {
|
||||||
.$class("ui-state-default")._("Queue")._()._()._().tbody();
|
.$class("ui-state-default")._("Queue")._()._()._().tbody();
|
||||||
SchedulerHealth.DetailedInformation di = entry.getValue();
|
SchedulerHealth.DetailedInformation di = entry.getValue();
|
||||||
if (di.getTimestamp() != 0) {
|
if (di.getTimestamp() != 0) {
|
||||||
|
if (di.getContainerId() != null) {
|
||||||
containerId = di.getContainerId().toString();
|
containerId = di.getContainerId().toString();
|
||||||
|
}
|
||||||
|
if (di.getNodeId() != null) {
|
||||||
nodeId = di.getNodeId().toString();
|
nodeId = di.getNodeId().toString();
|
||||||
|
}
|
||||||
queue = di.getQueue();
|
queue = di.getQueue();
|
||||||
}
|
}
|
||||||
tbody.$class("ui-widget-content").tr()
|
tbody.$class("ui-widget-content").tr()
|
||||||
|
|
Loading…
Reference in New Issue