c# - Quartz Fire Time is off by an hour -
i upgraded 1.x latest version 2.1.2. ran db scripts , made necessary code changes , we're testing now. seems work expected 1 odd exception. have little ui query qrtz_trigger table can see schedules when things run.
when schedule job daily cron trigger run @ correct time first run, subsequent time off 1 hour. example schedule daily job run @ 2:30 pm every day, cron expression looks like:
0 30 14 ? * mon-sun
and cron expression appears such in db well. when in qrtz_triggers table see following (converted ticks):
- next_fire_time: 2013-08-15 14:30:00.000
- prev_fire_time: null
so far good. trigger fires, runs job , qrtz_triggers table updated to:
- next_fire_time: 2013-08-16 13:30:00.000
- prev_fire_time: 2013-08-15 14:30:00.000
we keep our servers running on utc avoid confusion. bug? might going on here? don't see behavior in 1.x
Comments
Post a Comment