Omaha #4128: Fix NullPointerException in FetchActiveTableSrv.preStop().
Change-Id: I52f7181d2e6585f4e1b84e949212324d308529cc Former-commit-id: 92b8782bb0c874e78e00d848c71c8140ff71e6ac
This commit is contained in:
parent
f7816713fb
commit
3fc30a2584
1 changed files with 3 additions and 1 deletions
|
@ -319,7 +319,9 @@ public final class FetchActiveTableSrv implements IContextStateProcessor {
|
|||
statusHandler.info("Shutting down FetchATSrv...");
|
||||
|
||||
activeServiceInstance = false;
|
||||
jobExecutor.shutdown();
|
||||
if (jobExecutor != null) {
|
||||
jobExecutor.shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue