I am wondering when I set something like this
Trigger trigger = TriggerUtils.MakeDailyTrigger("abc", 5, 00);
I am setting it for 5:00am. Is this 5:00am server time or UTC time?
|
I am wondering when I set something like this
I am setting it for 5:00am. Is this 5:00am server time or UTC time? |
|||
|
|
|
It uses UTC time, however this is not properly documented. Edit: actually it looks like it has used both! Versions prior to 0.9 used local time, those after use UTC (source), so it should be UTC as long as you are using a recent version. |
||||
|
|
5:00am UTC time. Public Quartz.NET API always expects times in UTC format. Just FYI,
|
|||
|
|
|
I believe that when you enter an hour in the hour argument in the MakeDailyTrigger method that Quartz.Net is expecting local time...Internally Quartz.net converts this time to UTC, but if you enter 5 in the hour argument the trigger will fire at 5AM local time. Try this
|
|||
|
|