diff --git a/action_delay.go b/action_delay.go index 970da70..d9fcb7e 100644 --- a/action_delay.go +++ b/action_delay.go @@ -15,7 +15,7 @@ func init() { totalDelay := r.Delay if r.DelayJitter > 0 { - totalDelay += time.Duration(rand.Int63n(int64(r.DelayJitter))) + totalDelay += time.Duration(rand.Int63n(int64(r.DelayJitter))) // #nosec: G404 // It's just time, no need for crypto/rand } time.Sleep(totalDelay)