YARN-6827. [ATS1/1.5] NPE exception while publishing recovering applications into ATS during RM restart. Contributed by Rohith Sharma K S.

This commit is contained in:
Sunil G 2018-04-20 00:05:53 +05:30
parent c6d7d3eb05
commit 7d06806dfd

View File

@ -1273,8 +1273,6 @@ synchronized void transitionToStandby(boolean initialize)
protected void serviceStart() throws Exception {
if (this.rmContext.isHAEnabled()) {
transitionToStandby(false);
} else {
transitionToActive();
}
startWepApp();
@ -1284,6 +1282,11 @@ protected void serviceStart() throws Exception {
WebAppUtils.setRMWebAppPort(conf, port);
}
super.serviceStart();
// Non HA case, start after RM services are started.
if (!this.rmContext.isHAEnabled()) {
transitionToActive();
}
}
protected void doSecureLogin() throws IOException {