YARN-4543. Fix random test failure in TestNodeStatusUpdater.testStopReentrant. (Akihiro Suda via rohithsharmaks)
(cherry picked from commit ac68666803
)
This commit is contained in:
parent
0466743afb
commit
b8d5df06f2
|
@ -115,6 +115,9 @@ Release 2.9.0 - UNRELEASED
|
|||
YARN-4519. Potential deadlock of CapacityScheduler between decrease container
|
||||
and assign containers. (Meng Ding via jianhe)
|
||||
|
||||
YARN-4543. Fix random test failure in TestNodeStatusUpdater.testStopReentrant
|
||||
(Akihiro Suda via rohithsharmaks)
|
||||
|
||||
Release 2.8.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -1269,7 +1269,14 @@ public class TestNodeStatusUpdater {
|
|||
}
|
||||
|
||||
Assert.assertEquals(STATE.STOPPED, nm.getServiceState());
|
||||
Assert.assertEquals(numCleanups.get(), 1);
|
||||
|
||||
// It further takes a while after NM reached the STOPPED state.
|
||||
waitCount = 0;
|
||||
while (numCleanups.get() == 0 && waitCount++ != 20) {
|
||||
LOG.info("Waiting for NM shutdown..");
|
||||
Thread.sleep(1000);
|
||||
}
|
||||
Assert.assertEquals(1, numCleanups.get());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue