Skip to content

Commit

Permalink
ENG-96 Protect against premature shutdown by ignoring pause before in…
Browse files Browse the repository at this point in the history
…itialization
  • Loading branch information
ljacomet committed Aug 8, 2013
1 parent ebb2512 commit bdb51ba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ public void schedulerStarted() throws SchedulerException {

@Override
public void schedulerPaused() {
clusteredJobStore.schedulerPaused();
if (clusteredJobStore != null) {
clusteredJobStore.schedulerPaused();
}
}

@Override
Expand Down

0 comments on commit bdb51ba

Please sign in to comment.