Skip to content

Commit

Permalink
YARN-3824. Fix two minor nits in member variable properties of
Browse files Browse the repository at this point in the history
YarnConfiguration. Contributed by Ray Chiang.
  • Loading branch information
Devaraj K committed Jun 18, 2015
1 parent 295d678 commit 2ad6687
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions hadoop-yarn-project/CHANGES.txt
Expand Up @@ -536,6 +536,9 @@ Release 2.8.0 - UNRELEASED
YARN-3617. Fix WindowsResourceCalculatorPlugin.getCpuFrequency()
returning always -1. (J.Andreina via devaraj)

YARN-3824. Fix two minor nits in member variable properties
of YarnConfiguration. (Ray Chiang via devaraj)

Release 2.7.1 - UNRELEASED

INCOMPATIBLE CHANGES
Expand Down
Expand Up @@ -278,7 +278,7 @@ private static void addDeprecatedKeys() {
+ "intermediate-data-encryption.enable";

@Private
public static final Boolean DEFAULT_YARN_INTERMEDIATE_DATA_ENCRYPTION = false;
public static final boolean DEFAULT_YARN_INTERMEDIATE_DATA_ENCRYPTION = false;

/** The address of the RM admin interface.*/
public static final String RM_ADMIN_ADDRESS =
Expand Down Expand Up @@ -729,7 +729,7 @@ private static void addDeprecatedKeys() {

public static final String RM_PROXY_USER_PRIVILEGES_ENABLED = RM_PREFIX
+ "proxy-user-privileges.enabled";
public static boolean DEFAULT_RM_PROXY_USER_PRIVILEGES_ENABLED = false;
public static final boolean DEFAULT_RM_PROXY_USER_PRIVILEGES_ENABLED = false;

/**
* How many diagnostics/failure messages can be saved in RM for
Expand Down

0 comments on commit 2ad6687

Please sign in to comment.