Replace periodic scanner cancellation channel with a context

This commit is contained in:
Deluan 2021-01-31 17:37:54 -05:00
parent 9520c30c32
commit c5686c4884
2 changed files with 10 additions and 17 deletions

View file

@ -1,6 +1,7 @@
package cmd
import (
"context"
"fmt"
"os"
"time"
@ -79,21 +80,20 @@ func startScanner() (func() error, func(err error)) {
interval := conf.Server.ScanInterval
log.Info("Starting scanner", "interval", interval.String())
scanner := GetScanner()
done := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
return func() error {
if interval != 0 {
time.Sleep(2 * time.Second) // Wait 2 seconds before the first scan
scanner.Start(interval)
scanner.Run(ctx, interval)
} else {
log.Warn("Periodic scan is DISABLED", "interval", interval)
<-ctx.Done()
}
<-done
return nil
}, func(err error) {
scanner.Stop()
done <- struct{}{}
cancel()
if err != nil {
log.Error("Shutting down Scanner due to error", err)
} else {