You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TriggerFiredBundle triggerFiredBundle = new TriggerFiredBundle(job, trigger, calendar, false, new Date(), previousFireTime, previousFireTime, trigger.getNextFireTime());
sets scheduledFireTime not to the "real" scheduled time when misfires are processed.
This plays a role when the misfire policy is set to MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY
Fix: Change to
TriggerFiredBundle triggerFiredBundle = new TriggerFiredBundle(job, trigger, calendar, false, new Date(), trigger.getPreviousFireTime(), previousFireTime, trigger.getNextFireTime());
like the other job stores do.
The text was updated successfully, but these errors were encountered:
k1th
pushed a commit
to k1th/quartz-redis-jobstore
that referenced
this issue
Jul 25, 2022
sets
scheduledFireTime
not to the "real" scheduled time when misfires are processed.This plays a role when the misfire policy is set to
MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY
Fix: Change to
like the other job stores do.
The text was updated successfully, but these errors were encountered: