MAPREDUCE-5312. TestRMNMInfo is failing. (sandyr via tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1491043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
74e88105c9
commit
d00d968c49
|
@ -532,6 +532,8 @@ Release 2.1.0-beta - UNRELEASED
|
|||
MAPREDUCE-5303. Changed MR app after moving ProtoBase to package impl.pb via
|
||||
YARN-724. (Jian He via vinodkv)
|
||||
|
||||
MAPREDUCE-5312. TestRMNMInfo is failing. (sandyr via tucu)
|
||||
|
||||
Release 2.0.5-alpha - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -118,8 +118,6 @@ public class TestRMNMInfo {
|
|||
Assert.assertTrue("Node " + n.get("NodeId") + " should be RUNNING",
|
||||
n.get("State").getValueAsText().contains("RUNNING"));
|
||||
Assert.assertNotNull(n.get("NodeHTTPAddress"));
|
||||
Assert.assertTrue("Node " + n.get("NodeId") + " should be Healthy",
|
||||
n.get("HealthStatus").getValueAsText().contains("Healthy"));
|
||||
Assert.assertNotNull(n.get("LastHealthUpdate"));
|
||||
Assert.assertNotNull(n.get("HealthReport"));
|
||||
Assert.assertNotNull(n.get("NumContainers"));
|
||||
|
@ -156,8 +154,6 @@ public class TestRMNMInfo {
|
|||
Assert.assertTrue("Node " + n.get("NodeId") + " should be RUNNING",
|
||||
n.get("State").getValueAsText().contains("RUNNING"));
|
||||
Assert.assertNotNull(n.get("NodeHTTPAddress"));
|
||||
Assert.assertTrue("Node " + n.get("NodeId") + " should be Healthy",
|
||||
n.get("HealthStatus").getValueAsText().contains("Healthy"));
|
||||
Assert.assertNotNull(n.get("LastHealthUpdate"));
|
||||
Assert.assertNotNull(n.get("HealthReport"));
|
||||
Assert.assertNull(n.get("NumContainers"));
|
||||
|
|
Loading…
Reference in New Issue