Issue #2607 Fixed Nullpointer
Former-commit-id:25ce37d2d8
[formerly 6968c9f0a13880fe60e90a84b67a597753cbb175] Former-commit-id:25f745bc12
This commit is contained in:
parent
30fcbc323a
commit
b0f12b6613
1 changed files with 4 additions and 1 deletions
|
@ -83,6 +83,7 @@ import com.raytheon.uf.viz.monitor.ffmp.xml.FFMPConfigBasinXML;
|
|||
* Jun 06, 2013 2075 njensen Use new load jobs
|
||||
* Jul 15, 2013 2184 dhladky Remove all HUC's for storage except ALL
|
||||
* Jul 17, 2013 2197 njensen Broke background loading into chunks
|
||||
* Dec 04, 2013 2607 dhladky Nullpointer in job when starting with 24 hour pull.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -279,7 +280,9 @@ public class FFMPResourceData extends AbstractRequestableResourceData {
|
|||
|
||||
loadedUpTo = startTime;
|
||||
}
|
||||
firstJob.schedule();
|
||||
if (firstJob != null) {
|
||||
firstJob.schedule();
|
||||
}
|
||||
}
|
||||
});
|
||||
initialJob.schedule();
|
||||
|
|
Loading…
Add table
Reference in a new issue