YARN-1184. ClassCastException during preemption enforcement.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1523863 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4ea295016e
commit
90f43b1c18
|
@ -214,6 +214,8 @@ Release 2.1.1-beta - UNRELEASED
|
|||
YARN-540. Race condition causing RM to potentially relaunch already
|
||||
unregistered AMs on RM restart (Jian He via bikas)
|
||||
|
||||
YARN-1184. ClassCastException during preemption enforcement. (cdouglas)
|
||||
|
||||
Release 2.1.0-beta - 2013-08-22
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -1609,9 +1609,12 @@ public class LeafQueue implements CSQueue {
|
|||
|
||||
}
|
||||
|
||||
// need to access the list of apps from the preemption monitor
|
||||
/**
|
||||
* Obtain (read-only) collection of active applications.
|
||||
*/
|
||||
public Set<FiCaSchedulerApp> getApplications() {
|
||||
return Collections.unmodifiableSet(activeApplications);
|
||||
// need to access the list of apps from the preemption monitor
|
||||
return activeApplications;
|
||||
}
|
||||
|
||||
// return a single Resource capturing the overal amount of pending resources
|
||||
|
|
Loading…
Reference in New Issue