Fix for --once option

This commit is contained in:
Thomas Roehl 2022-05-13 14:07:58 +02:00
parent 1ed4e70fb9
commit 7087edd5af

View File

@ -291,7 +291,7 @@ func mainFunc() int {
// Wait until one tick has passed. This is a workaround
if rcfg.CliArgs["once"] == "true" {
x := 1.2 * float64(rcfg.Interval)
x := 1.2 * float64(rcfg.Interval.Seconds())
time.Sleep(time.Duration(int(x)) * time.Second)
shutdownSignal <- os.Interrupt
}