YARN-1259. In Fair Scheduler web UI, queue num pending and num active apps switched. (Robert Kanter via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1532094 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cf0cf0a691
commit
cd7e7c3cdd
@ -111,6 +111,9 @@ Release 2.2.1 - UNRELEASED
|
|||||||
YARN-1044. used/min/max resources do not display info in the scheduler page
|
YARN-1044. used/min/max resources do not display info in the scheduler page
|
||||||
(Sangjin Lee via Sandy Ryza)
|
(Sangjin Lee via Sandy Ryza)
|
||||||
|
|
||||||
|
YARN-1259. In Fair Scheduler web UI, queue num pending and num active apps
|
||||||
|
switched. (Robert Kanter via Sandy Ryza)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -50,10 +50,10 @@ public FairSchedulerLeafQueueInfo(FSLeafQueue queue, FairScheduler scheduler) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getNumActiveApplications() {
|
public int getNumActiveApplications() {
|
||||||
return numPendingApps;
|
return numActiveApps;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getNumPendingApplications() {
|
public int getNumPendingApplications() {
|
||||||
return numActiveApps;
|
return numPendingApps;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user