Omaha #4128: Fix NullPointerException in FetchActiveTableSrv.preStop().

Change-Id: I52f7181d2e6585f4e1b84e949212324d308529cc

Former-commit-id: 92b8782bb0c874e78e00d848c71c8140ff71e6ac
This commit is contained in:
David Gillingham 2015-03-05 10:08:14 -06:00
parent f7816713fb
commit 3fc30a2584

View file

@ -319,7 +319,9 @@ public final class FetchActiveTableSrv implements IContextStateProcessor {
statusHandler.info("Shutting down FetchATSrv...");
activeServiceInstance = false;
jobExecutor.shutdown();
if (jobExecutor != null) {
jobExecutor.shutdown();
}
}
/*