YARN-1120. Made ApplicationConstants.Environment.USER definition OS neutral as the corresponding value is now set correctly end-to-end. Contributed by Chuan Liu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1519330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a759abcd89
commit
66841c29db
|
@ -78,6 +78,10 @@ Release 2.1.1-beta - UNRELEASED
|
|||
YARN-1117. Improved help messages for "yarn application" and "yarn node"
|
||||
commands. (Xuan Gong via vinodkv)
|
||||
|
||||
YARN-1120. Made ApplicationConstants.Environment.USER definition OS neutral
|
||||
as the corresponding value is now set correctly end-to-end. (Chuan Liu via
|
||||
vinodkv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -80,7 +80,7 @@ public interface ApplicationConstants {
|
|||
* $USER
|
||||
* Final, non-modifiable.
|
||||
*/
|
||||
USER(Shell.WINDOWS ? "USERNAME": "USER"),
|
||||
USER("USER"),
|
||||
|
||||
/**
|
||||
* $LOGNAME
|
||||
|
|
Loading…
Reference in New Issue