YARN-2204. TestAMRestart#testAMRestartWithExistingContainers assumes CapacityScheduler. (Robert Kanter via kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1605548 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c3f1c30e65
commit
1a3a7e0c1a
@ -287,6 +287,9 @@ Release 2.5.0 - UNRELEASED
|
||||
YARN-2111. In FairScheduler.attemptScheduling, we don't count containers
|
||||
as assigned if they have 0 memory but non-zero cores (Sandy Ryza)
|
||||
|
||||
YARN-2204. TestAMRestart#testAMRestartWithExistingContainers assumes
|
||||
CapacityScheduler. (Robert Kanter via kasha)
|
||||
|
||||
Release 2.4.1 - 2014-06-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -57,6 +57,8 @@ public class TestAMRestart {
|
||||
public void testAMRestartWithExistingContainers() throws Exception {
|
||||
YarnConfiguration conf = new YarnConfiguration();
|
||||
conf.setInt(YarnConfiguration.RM_AM_MAX_ATTEMPTS, 2);
|
||||
conf.setClass(YarnConfiguration.RM_SCHEDULER, CapacityScheduler.class,
|
||||
ResourceScheduler.class);
|
||||
|
||||
MockRM rm1 = new MockRM(conf);
|
||||
rm1.start();
|
||||
|
Loading…
Reference in New Issue
Block a user