YARN-8959. TestContainerResizing fails randomly (Ahmed Hussein via jeagles)
Signed-off-by: Jonathan Eagles <jeagles@gmail.com>
(cherry picked from commit 92e3ebb401
)
This commit is contained in:
parent
53f6d26500
commit
7740b88ee9
|
@ -206,7 +206,7 @@ public class TestContainerResizing {
|
|||
verifyContainerDecreased(response, containerId1, 1 * GB);
|
||||
|
||||
// Wait for scheduler to finish processing kill events..
|
||||
dispatcher.waitForEventThreadToWait();
|
||||
dispatcher.await();
|
||||
|
||||
checkUsedResource(rm1, "default", 1 * GB, null);
|
||||
Assert.assertEquals(1 * GB,
|
||||
|
@ -607,7 +607,7 @@ public class TestContainerResizing {
|
|||
// Trigger a node heartbeat..
|
||||
cs.handle(new NodeUpdateSchedulerEvent(rmNode1));
|
||||
|
||||
dispatcher.waitForEventThreadToWait();
|
||||
dispatcher.await();
|
||||
/* Check statuses after reservation satisfied */
|
||||
// Increase request should be unreserved
|
||||
Assert.assertTrue(app.getReservedContainers().isEmpty());
|
||||
|
@ -716,7 +716,7 @@ public class TestContainerResizing {
|
|||
am1.allocate(null, null);
|
||||
|
||||
// Wait for scheduler to process all events.
|
||||
dispatcher.waitForEventThreadToWait();
|
||||
dispatcher.await();
|
||||
|
||||
/* Check statuses after reservation satisfied */
|
||||
// Increase request should be unreserved
|
||||
|
|
Loading…
Reference in New Issue