YARN-2906. CapacitySchedulerPage shows HTML tags for a queue's Active Users. Contributed by Jason Lowe
(cherry picked from commit 8a7ca13b13
)
This commit is contained in:
parent
8018d1af58
commit
ae35b0e14d
|
@ -116,6 +116,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
YARN-2697. Remove useless RMAuthenticationHandler. (Haosong Huang via zjshen)
|
YARN-2697. Remove useless RMAuthenticationHandler. (Haosong Huang via zjshen)
|
||||||
|
|
||||||
|
YARN-2906. CapacitySchedulerPage shows HTML tags for a queue's Active Users.
|
||||||
|
(Jason Lowe via jianhe)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-18
|
Release 2.6.0 - 2014-11-18
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -120,8 +120,8 @@ class CapacitySchedulerPage extends RmView {
|
||||||
_("Configured Max Capacity:", percent(lqinfo.getMaxCapacity() / 100)).
|
_("Configured Max Capacity:", percent(lqinfo.getMaxCapacity() / 100)).
|
||||||
_("Configured Minimum User Limit Percent:", Integer.toString(lqinfo.getUserLimit()) + "%").
|
_("Configured Minimum User Limit Percent:", Integer.toString(lqinfo.getUserLimit()) + "%").
|
||||||
_("Configured User Limit Factor:", String.format("%.1f", lqinfo.getUserLimitFactor())).
|
_("Configured User Limit Factor:", String.format("%.1f", lqinfo.getUserLimitFactor())).
|
||||||
_("Active Users: ", activeUserList.toString()).
|
_r("Active Users: ", activeUserList.toString()).
|
||||||
_r("Accessible Node Labels:", StringUtils.join(",", lqinfo.getNodeLabels()));
|
_("Accessible Node Labels:", StringUtils.join(",", lqinfo.getNodeLabels()));
|
||||||
|
|
||||||
html._(InfoBlock.class);
|
html._(InfoBlock.class);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue