We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something is broken since the last release 0.5.0; tasks aren't executed anymore in that specific case :
package main import( "fmt" "time" "github.com/go-co-op/gocron" ) func task() { fmt.Println("Im a dummy task") } func main() { // defines a new scheduler that schedules and runs jobs scheduler := gocron.NewScheduler(time.UTC) j, _ := scheduler.Every(1).StartAt(time.Now().Add(5*time.Second)).Do(task) j.LimitRunsTo(1) scheduler.StartAsync() time.Sleep(15*time.Second) }
0.5.0
The text was updated successfully, but these errors were encountered:
duplicate #98
Sorry, something went wrong.
Check out v0.5.1
No branches or pull requests
Describe the bug
Something is broken since the last release 0.5.0; tasks aren't executed anymore in that specific case :
To Reproduce
Version
0.5.0
The text was updated successfully, but these errors were encountered: