❔ cron task, 1 task is delaying

RecurringJob.AddOrUpdate<ReportService>(x => x.SendTimeSpecificLocationSummary(), "0 0 7,11,15,20 ? * MON,TUE,WED,THU,FRI");

The above code is the task, today it ran at 7(6am CST), 11(10am CST) but when it got to 15, instead of running at 2pm CST, it ran at 3pm CST.

Unsure why since the previous tasks work.
Was this page helpful?