YARN-2596. TestWorkPreservingRMRestart fails with FairScheduler. (kasha)
(cherry picked from commit 39c87344e1
)
This commit is contained in:
parent
3cf28210ec
commit
30165d4cdd
|
@ -409,6 +409,8 @@ Release 2.6.0 - UNRELEASED
|
||||||
|
|
||||||
YARN-2161. Fix build on macosx: YARN parts (Binglin Chang via aw)
|
YARN-2161. Fix build on macosx: YARN parts (Binglin Chang via aw)
|
||||||
|
|
||||||
|
YARN-2596. TestWorkPreservingRMRestart fails with FairScheduler. (kasha)
|
||||||
|
|
||||||
Release 2.5.1 - 2014-09-05
|
Release 2.5.1 - 2014-09-05
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -88,7 +88,7 @@ public class SchedulerApplicationAttempt {
|
||||||
protected final Resource currentReservation = Resource.newInstance(0, 0);
|
protected final Resource currentReservation = Resource.newInstance(0, 0);
|
||||||
private Resource resourceLimit = Resource.newInstance(0, 0);
|
private Resource resourceLimit = Resource.newInstance(0, 0);
|
||||||
protected Resource currentConsumption = Resource.newInstance(0, 0);
|
protected Resource currentConsumption = Resource.newInstance(0, 0);
|
||||||
private Resource amResource;
|
private Resource amResource = Resources.none();
|
||||||
private boolean unmanagedAM = true;
|
private boolean unmanagedAM = true;
|
||||||
private boolean amRunning = false;
|
private boolean amRunning = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue