瀏覽代碼

MAPREDUCE-2773. server.api.records.NodeHealthStatus renamed but not updated in client NodeHealthStatus.java (Thomas Graves via mahadev)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/MR-279@1153635 13f79535-47bb-0310-9956-ffa450edef68
Mahadev Konar 14 年之前
父節點
當前提交
8223f50aae
共有 2 個文件被更改,包括 6 次插入3 次删除
  1. 4 1
      mapreduce/CHANGES.txt
  2. 2 2
      mapreduce/src/java/org/apache/hadoop/mapred/NodeHealthStatus.java

+ 4 - 1
mapreduce/CHANGES.txt

@@ -4,7 +4,10 @@ Trunk (unreleased changes)
 
 
     MAPREDUCE-279
-    
+
+    MAPREDUCE-2773. server.api.records.NodeHealthStatus renamed but 
+    not updated in client NodeHealthStatus.java (Thomas Graves via mahadev)
+ 
     Refactor/Cleanup yarn ResourceManager for managing state via
     state-machines and making most of the component interactions as
     asynchronous. (vinodkv, sharad and acmurthy)

+ 2 - 2
mapreduce/src/java/org/apache/hadoop/mapred/NodeHealthStatus.java

@@ -13,7 +13,7 @@ import org.apache.hadoop.io.Writable;
  * 
  */
 public class NodeHealthStatus implements
-  org.apache.hadoop.yarn.server.api.records.NodeHealthStatus, Writable {
+  org.apache.hadoop.yarn.api.records.NodeHealthStatus, Writable {
 
   private boolean isNodeHealthy;
   private String healthReport;
@@ -110,4 +110,4 @@ public class NodeHealthStatus implements
     out.writeLong(lastHealthReportTime);
   }
   
-}
+}