YARN-9507. Fix NPE in NodeManager#serviceStop on startup failure. Contributed by Bilwa S T.
This commit is contained in:
parent
2185249481
commit
4530f4500d
|
@ -526,10 +526,12 @@ public class NodeManager extends CompositeService
|
||||||
DefaultMetricsSystem.shutdown();
|
DefaultMetricsSystem.shutdown();
|
||||||
|
|
||||||
// Cleanup ResourcePluginManager
|
// Cleanup ResourcePluginManager
|
||||||
|
if (null != context) {
|
||||||
ResourcePluginManager rpm = context.getResourcePluginManager();
|
ResourcePluginManager rpm = context.getResourcePluginManager();
|
||||||
if (rpm != null) {
|
if (rpm != null) {
|
||||||
rpm.cleanup();
|
rpm.cleanup();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
// YARN-3641: NM's services stop get failed shouldn't block the
|
// YARN-3641: NM's services stop get failed shouldn't block the
|
||||||
// release of NMLevelDBStore.
|
// release of NMLevelDBStore.
|
||||||
|
|
Loading…
Reference in New Issue