YARN-3473. Fix RM Web UI configuration for some properties (rchiang via rkanter)
This commit is contained in:
parent
315074bb08
commit
5658998845
|
@ -371,6 +371,8 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-3604. Fixed ZKRMStateStore#removeApplication to also disable watch.
|
||||
(zhihai xu via jianhe)
|
||||
|
||||
YARN-3473. Fix RM Web UI configuration for some properties (rchiang via rkanter)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -200,7 +200,8 @@ public class ResourceManager extends CompositeService implements Recoverable {
|
|||
this.configurationProvider.getConfigurationInputStream(this.conf,
|
||||
YarnConfiguration.CORE_SITE_CONFIGURATION_FILE);
|
||||
if (coreSiteXMLInputStream != null) {
|
||||
this.conf.addResource(coreSiteXMLInputStream);
|
||||
this.conf.addResource(coreSiteXMLInputStream,
|
||||
YarnConfiguration.CORE_SITE_CONFIGURATION_FILE);
|
||||
}
|
||||
|
||||
// Do refreshUserToGroupsMappings with loaded core-site.xml
|
||||
|
@ -218,7 +219,8 @@ public class ResourceManager extends CompositeService implements Recoverable {
|
|||
this.configurationProvider.getConfigurationInputStream(this.conf,
|
||||
YarnConfiguration.YARN_SITE_CONFIGURATION_FILE);
|
||||
if (yarnSiteXMLInputStream != null) {
|
||||
this.conf.addResource(yarnSiteXMLInputStream);
|
||||
this.conf.addResource(yarnSiteXMLInputStream,
|
||||
YarnConfiguration.YARN_SITE_CONFIGURATION_FILE);
|
||||
}
|
||||
|
||||
validateConfigs(this.conf);
|
||||
|
|
Loading…
Reference in New Issue