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:
Sanford Ryza 2013-10-14 21:06:01 +00:00
parent cf0cf0a691
commit cd7e7c3cdd
2 changed files with 5 additions and 2 deletions

View File

@ -111,6 +111,9 @@ Release 2.2.1 - UNRELEASED
YARN-1044. used/min/max resources do not display info in the scheduler page
(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
INCOMPATIBLE CHANGES

View File

@ -50,10 +50,10 @@ public class FairSchedulerLeafQueueInfo extends FairSchedulerQueueInfo {
}
public int getNumActiveApplications() {
return numPendingApps;
return numActiveApps;
}
public int getNumPendingApplications() {
return numActiveApps;
return numPendingApps;
}
}