YARN-4863. AHS Security login should be in serviceInit() instead of serviceStart(). Contributed by Junping Du

(cherry picked from commit 80182809ae)
(cherry picked from commit ffe01e05cd)
This commit is contained in:
Xuan 2016-03-28 22:17:45 -07:00
parent 88b56cdfaa
commit d5ea2462c2
1 changed files with 8 additions and 10 deletions

View File

@ -86,7 +86,14 @@ public ApplicationHistoryServer() {
@Override
protected void serviceInit(Configuration conf) throws Exception {
// init timeline services first
// do security login first.
try {
doSecureLogin(conf);
} catch(IOException ie) {
throw new YarnRuntimeException("Failed to login", ie);
}
// init timeline services
timelineStore = createTimelineStore(conf);
addIfService(timelineStore);
secretManagerService = createTimelineDelegationTokenSecretManagerService(conf);
@ -110,15 +117,6 @@ protected void serviceInit(Configuration conf) throws Exception {
@Override
protected void serviceStart() throws Exception {
try {
doSecureLogin(getConfig());
} catch(IOException ie) {
throw new YarnRuntimeException("Failed to login", ie);
}
if (pauseMonitor != null) {
pauseMonitor.start();
}
super.serviceStart();
startWebApp();
}