YARN-1262. TestApplicationCleanup relies on all containers assigned in a single heartbeat (Karthik Kambatla via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1528249 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7e812e7126
commit
2c329793c6
|
@ -99,6 +99,9 @@ Release 2.1.2 - UNRELEASED
|
|||
|
||||
YARN-1215. Yarn URL should include userinfo. (Chuan Liu via cnauroth)
|
||||
|
||||
YARN-1262. TestApplicationCleanup relies on all containers assigned in a
|
||||
single heartbeat (Karthik Kambatla via Sandy Ryza)
|
||||
|
||||
Release 2.1.1-beta - 2013-09-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -88,6 +88,7 @@ public class TestApplicationCleanup {
|
|||
conts = am.allocate(new ArrayList<ResourceRequest>(),
|
||||
new ArrayList<ContainerId>()).getAllocatedContainers();
|
||||
contReceived += conts.size();
|
||||
nm1.nodeHeartbeat(true);
|
||||
}
|
||||
Assert.assertEquals(request, contReceived);
|
||||
|
||||
|
@ -178,6 +179,7 @@ public class TestApplicationCleanup {
|
|||
new ArrayList<ContainerId>()).getAllocatedContainers();
|
||||
dispatcher.await();
|
||||
contReceived += conts.size();
|
||||
nm1.nodeHeartbeat(true);
|
||||
}
|
||||
Assert.assertEquals(request, contReceived);
|
||||
|
||||
|
|
Loading…
Reference in New Issue