You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gocron uses https://github.com/robfig/cron for parsing cron syntax, and it's not supported over there, although there are some issues / PRs related
Describe the bug
Gocron cronjob cant parse "LW", errors with invalid syntax
To Reproduce
`
package main
import (
"log"
"github.com/go-co-op/gocron/v2"
)
func main() {
s, err := gocron.NewScheduler()
if err != nil {
log.Fatal(err)
}
}
`
Version
v2.13.0
Expected behavior
The expression should be parsed since its a valid cron expression
The text was updated successfully, but these errors were encountered: