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
This commit is contained in:
Vinod Kumar Vavilapalli 2011-09-16 10:08:52 +00:00
parent cde0e484e7
commit 341a15a23d
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -30,7 +30,7 @@
* 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) {