Merge pull request #12 from Selly-Modules/develop
config-cron-with-second
This commit is contained in:
commit
7671ddc8e2
|
@ -24,7 +24,7 @@ type Scheduler struct {
|
||||||
// New ...
|
// New ...
|
||||||
func newSchedule(jobs ...*Job) *Scheduler {
|
func newSchedule(jobs ...*Job) *Scheduler {
|
||||||
l, _ := time.LoadLocation("Asia/Ho_Chi_Minh")
|
l, _ := time.LoadLocation("Asia/Ho_Chi_Minh")
|
||||||
c := cron.New(cron.WithLocation(l))
|
c := cron.New(cron.WithSeconds(), cron.WithLocation(l))
|
||||||
|
|
||||||
return &Scheduler{
|
return &Scheduler{
|
||||||
cron: c,
|
cron: c,
|
||||||
|
|
Loading…
Reference in New Issue