YARN-1919. Potential NPE in EmbeddedElectorService#stop. (Tsuyoshi Ozawa via kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1619251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b8250c742
commit
e1dd210fa5
@ -223,6 +223,9 @@ Release 2.6.0 - UNRELEASED
|
||||
YARN-2034. Description for yarn.nodemanager.localizer.cache.target-size-mb
|
||||
is incorrect (Chen He via jlowe)
|
||||
|
||||
YARN-1919. Potential NPE in EmbeddedElectorService#stop.
|
||||
(Tsuyoshi Ozawa via kasha)
|
||||
|
||||
Release 2.5.0 - 2014-08-11
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -109,8 +109,14 @@ protected void serviceStart() throws Exception {
|
||||
|
||||
@Override
|
||||
protected void serviceStop() throws Exception {
|
||||
elector.quitElection(false);
|
||||
elector.terminateConnection();
|
||||
/**
|
||||
* When error occurs in serviceInit(), serviceStop() can be called.
|
||||
* We need null check for the case.
|
||||
*/
|
||||
if (elector != null) {
|
||||
elector.quitElection(false);
|
||||
elector.terminateConnection();
|
||||
}
|
||||
super.serviceStop();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user