We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73fa460 commit cd16d6dCopy full SHA for cd16d6d
dbos/system_database.go
@@ -2350,6 +2350,6 @@ func backoffWithJitter(retryAttempt int) time.Duration {
2350
}
2351
2352
// want randomization between +-25% of exp
2353
- jitter := 0.75 + rand.Float64()*0.5 //nosec G404 -- trivial use of math/rand
+ jitter := 0.75 + rand.Float64()*0.5 // #nosec G404 -- trivial use of math/rand
2354
return time.Duration(exp * jitter)
2355
0 commit comments