If this program run at 2024-01-01,then fmt.Println("Every 5 day") will run at 2024-01-06、2024-01-11 ......,
but if I restart this program at 2024-01-02,then fmt.Println("Every 5 day") will run at 2024-01-07、2024-01-12 .......,
So ,How to avoid restart influence?or How to start job from the past time? or How to set a specific past time as original cron start time ?
If this program run at 2024-01-01,then
fmt.Println("Every 5 day")
will run at 2024-01-06、2024-01-11 ......, but if I restart this program at 2024-01-02,thenfmt.Println("Every 5 day")
will run at 2024-01-07、2024-01-12 ......., So ,How to avoid restart influence?or How to start job from the past time? or How to set a specific past time as original cron start time ?