Skip to content

Commit cd16d6d

Browse files
missed #
1 parent 73fa460 commit cd16d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbos/system_database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2350,6 +2350,6 @@ func backoffWithJitter(retryAttempt int) time.Duration {
23502350
}
23512351

23522352
// want randomization between +-25% of exp
2353-
jitter := 0.75 + rand.Float64()*0.5 //nosec G404 -- trivial use of math/rand
2353+
jitter := 0.75 + rand.Float64()*0.5 // #nosec G404 -- trivial use of math/rand
23542354
return time.Duration(exp * jitter)
23552355
}

0 commit comments

Comments
 (0)