Golang : Fix go-cron set time not working issue
Problem :
You followed the go-cron example at https://pkg.go.dev/github.com/go-co-op/gocron#section-readme but later on found out that the scheduled task did not execute at the specified time.
s := gocron.NewScheduler(time.UTC)
// set time
s.Every(1).Day().At("10:30").Do(func(){ ... })
// set multiple times
s.Every(1).Day().At("10:30;08:00").Do(func(){ ... })
Solution :
Instead of using time.UTC
, set the time location first to whatever timezone your server/machine is running at and then use the time for the go-cron scheduler.
For example :
localTime, err := time.LoadLocation("Asia/Singapore")
if err != nil {
logs.Fatal().Err(err).Msg("Error in time load location")
}
cronScheduler := gocron.NewScheduler(localTime)
Hope this helps and happy coding!
See also : Golang : How to get time zone and load different time zone?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.3k Golang : Implementing class(object-oriented programming style)
+13k Golang : How to calculate the distance between two coordinates using Haversine formula
+15.8k Golang : Update database with GORM example
+8.3k Useful methods to access blocked websites
+19.4k Golang : Example for DSA(Digital Signature Algorithm) package functions
+17.6k Golang : Read data from config file and assign to variables
+12.6k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard
+6.9k Golang : Find the shortest line of text example
+22.6k Golang : Set and Get HTTP request headers example
+14.2k Golang : How to shuffle elements in array or slice?
+7.6k Golang : Command line ticker to show work in progress
+17.6k Convert JSON to CSV in Golang