MAPREDUCE-2994. svn merge -c r1171485 --ignore-ancestry ../../trunk/
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1171486 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
66ad5a6154
commit
d7170579ea
|
@ -1314,6 +1314,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.
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue