Преглед изворни кода

MAPREDUCE-5312. TestRMNMInfo is failing. (sandyr via tucu)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2.1-beta@1491045 13f79535-47bb-0310-9956-ffa450edef68
Alejandro Abdelnur пре 12 година
родитељ
комит
c60e14aeff

+ 2 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -398,6 +398,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

+ 0 - 4
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/v2/TestRMNMInfo.java

@@ -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"));