
|
If you were logged in you would be able to see more operations.
|
|
|
|
addCalendar using replace = true, and updateTriggers = true evaluates NPE in updateWithNewCalendar.
This happens if addCalendar calcs a nextFireTime == null in updateWithNewCalendar.
Changing from
...if(nextFireTime.before(now)) {...
to
...if(nextFireTime != null && nextFireTime.before(now)) {...
in updateWithNewCalendar for Simple- and CronTrigger
might fix the NPE
|
|
Description
|
addCalendar using replace = true, and updateTriggers = true evaluates NPE in updateWithNewCalendar.
This happens if addCalendar calcs a nextFireTime == null in updateWithNewCalendar.
Changing from
...if(nextFireTime.before(now)) {...
to
...if(nextFireTime != null && nextFireTime.before(now)) {...
in updateWithNewCalendar for Simple- and CronTrigger
might fix the NPE
|
Show » |
| There are no comments yet on this issue.
|
|