Bladeren bron

MAPREDUCE-2994. Fixed a bug in ApplicationID parsing that affects RM UI. Contributed by Devaraj K.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1171485 13f79535-47bb-0310-9956-ffa450edef68
Vinod Kumar Vavilapalli 13 jaren geleden
bovenliggende
commit
341a15a23d

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

@@ -1343,6 +1343,9 @@ Release 0.22.0 - Unreleased
     MAPREDUCE-1664. Changes the behaviour of the combination of job-acls
     when they function together with queue-acls. (Ravi Gummadi via vinodkv)
 
+    MAPREDUCE-2994. Fixed a bug in ApplicationID parsing that affects RM
+    UI. (Devaraj K via vinodkv)
+
   NEW FEATURES
 
     MAPREDUCE-1804. Stress-test tool for HDFS introduced in HDFS-708.

+ 1 - 1
hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/util/Apps.java

@@ -30,7 +30,7 @@ import static org.apache.hadoop.yarn.util.StringHelper.*;
  * Yarn application related utilities
  */
 public class Apps {
-  public static final String APP = "app";
+  public static final String APP = "application";
   public static final String ID = "ID";
 
   public static ApplicationId toAppID(String aid) {