mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-13 02:17:25 +01:00
34 lines
989 B
Go
34 lines
989 B
Go
// Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
|
// All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
package taskManager
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/ClusterCockpit/cc-backend/internal/config"
|
|
"github.com/ClusterCockpit/cc-backend/pkg/log"
|
|
"github.com/go-co-op/gocron/v2"
|
|
)
|
|
|
|
func RegisterUpdateDurationWorker() {
|
|
var frequency string
|
|
if config.Keys.CronFrequency != nil && config.Keys.CronFrequency.DurationWorker != "" {
|
|
frequency = config.Keys.CronFrequency.DurationWorker
|
|
} else {
|
|
frequency = "5m"
|
|
}
|
|
d, _ := time.ParseDuration(frequency)
|
|
log.Infof("Register Duration Update service with %s interval", frequency)
|
|
|
|
s.NewJob(gocron.DurationJob(d),
|
|
gocron.NewTask(
|
|
func() {
|
|
start := time.Now()
|
|
log.Printf("Update duration started at %s", start.Format(time.RFC3339))
|
|
jobRepo.UpdateDuration()
|
|
log.Printf("Update duration is done and took %s", time.Since(start))
|
|
}))
|
|
}
|