Skip to content

Commit

Permalink
DEV-9869 : temporary fix to get scheduled refresh working
Browse files Browse the repository at this point in the history
  • Loading branch information
cdennis committed Jun 4, 2013
1 parent 97ded7a commit 9b15973
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,8 @@ public List<OperableTrigger> getTriggersForJob(final JobKey jobKey) throws JobPe
try {
for (TriggerKey triggerKey : triggerFacade.allTriggerKeys()) {
TriggerWrapper tw = triggerFacade.get(triggerKey);
if (tw.getJobKey().equals(jobKey)) {
//XXX This null check is a temporary hack to get around DEV-9869
if (tw != null && tw.getJobKey().equals(jobKey)) {
trigList.add(tw.getTriggerClone());
}
}
Expand Down

0 comments on commit 9b15973

Please sign in to comment.