debug: adjust cron ticker interval & debug message
This commit is contained in:
parent
dd66cb9f1e
commit
b589fb8f0c
@ -23,10 +23,11 @@ func (i *Init) cron(wg *sync.WaitGroup, cron Cron, exitFlag <-chan any) {
|
|||||||
stderr io.ReadCloser
|
stderr io.ReadCloser
|
||||||
)
|
)
|
||||||
|
|
||||||
ticker := time.NewTicker(time.Second * 20)
|
ticker := time.NewTicker(time.Second * 30)
|
||||||
cron:
|
cron:
|
||||||
for {
|
for {
|
||||||
if cron.TimeToRun(time.Now()) {
|
if cron.TimeToRun(time.Now()) {
|
||||||
|
wingmate.Log().Info().Str(cronTag, cron.Command().Path()).Msg("executing")
|
||||||
cmd := exec.Command(cron.Command().Path())
|
cmd := exec.Command(cron.Command().Path())
|
||||||
iwg = &sync.WaitGroup{}
|
iwg = &sync.WaitGroup{}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user