1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

feat(api): remove cron second support

This commit is contained in:
Anthony Lapenna 2019-10-08 14:39:37 +13:00
parent 9aa52a6975
commit d717ad947b

View file

@ -13,7 +13,7 @@ type JobScheduler struct {
// NewJobScheduler initializes a new service
func NewJobScheduler() *JobScheduler {
return &JobScheduler{
cron: cron.New(cron.WithSeconds()),
cron: cron.New(),
}
}