Replies: 1 comment 4 replies
-
Hm, right now the logic doesn't trigger until the next available day, not starting on the current day even if the At times are later in the day 🤔 Seems like there is a bug here 🔍 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like create a schedule start at now (2023/8/25) and interval 2 day.
Below my code :
s := gocron.NewScheduler(time.UTC) s.StartAsync() _, err := s.Every(2).Day().At("9:57;5:14").Tag("tag").Do(task)
But schedule created and I check next run but result schedule run first at (2023/8/27) .
How to I can create schedule run first at (2023/8/25) ?
Beta Was this translation helpful? Give feedback.
All reactions