YARN-3824. Fix two minor nits in member variable properties of
YarnConfiguration. Contributed by Ray Chiang.
This commit is contained in:
parent
295d678be8
commit
2ad668748e
@ -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
|
||||
|
@ -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 =
|
||||
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user