In the internal loop of the run method the local variable now is updated when a new entry is added but not deleted.
https://github.com/robfig/cron/blob/v3/cron.go#L280
This results in the timer getting reset based an on outdated reference to now. Causing the trigger to later than specified.
https://github.com/robfig/cron/blob/v3/cron.go#L244
In the internal loop of the run method the local variable
nowis updated when a new entry is added but not deleted.https://github.com/robfig/cron/blob/v3/cron.go#L280
This results in the timer getting reset based an on outdated reference to now. Causing the trigger to later than specified.
https://github.com/robfig/cron/blob/v3/cron.go#L244