YARN-2462. TestNodeManagerResync#testBlockNewContainerRequestsOnStartAndResync should have a test timeout. Contributed by Eric Payne
(cherry picked from commit 9ecda8f4c7e10d825b884e35c994d241b9fc8907)
This commit is contained in:
parent
135315b66f
commit
b61b78e5c6
|
@ -240,6 +240,9 @@ Release 2.6.0 - UNRELEASED
|
||||||
YARN-2447. RM web service app submission doesn't pass secrets correctly.
|
YARN-2447. RM web service app submission doesn't pass secrets correctly.
|
||||||
(Varun Vasudev via jianhe)
|
(Varun Vasudev via jianhe)
|
||||||
|
|
||||||
|
YARN-2462. TestNodeManagerResync#testBlockNewContainerRequestsOnStartAndResync
|
||||||
|
should have a test timeout (Eric Payne via jlowe)
|
||||||
|
|
||||||
Release 2.5.1 - UNRELEASED
|
Release 2.5.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -159,7 +159,7 @@ public class TestNodeManagerResync {
|
||||||
// This test tests new container requests are blocked when NM starts from
|
// This test tests new container requests are blocked when NM starts from
|
||||||
// scratch until it register with RM AND while NM is resyncing with RM
|
// scratch until it register with RM AND while NM is resyncing with RM
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@Test
|
@Test(timeout=60000)
|
||||||
public void testBlockNewContainerRequestsOnStartAndResync()
|
public void testBlockNewContainerRequestsOnStartAndResync()
|
||||||
throws IOException, InterruptedException, YarnException {
|
throws IOException, InterruptedException, YarnException {
|
||||||
NodeManager nm = new TestNodeManager2();
|
NodeManager nm = new TestNodeManager2();
|
||||||
|
|
Loading…
Reference in New Issue