Don't wait too long in case of --once

This commit is contained in:
Thomas Roehl 2022-01-25 17:49:15 +01:00
parent 2925ad9f40
commit 7f77cad056

View File

@ -286,7 +286,7 @@ func mainFunc() int {
// Wait until one tick has passed. This is a workaround
if rcfg.CliArgs["once"] == "true" {
x := 1.8 * float64(rcfg.ConfigFile.Interval)
x := 1.2 * float64(rcfg.ConfigFile.Interval)
time.Sleep(time.Duration(int(x)) * time.Second)
shutdown(&rcfg)
}