forked from hashicorp/consul
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always seed math/rand on consul startup
Required for jitter calcs. This could be done in consul/agent, but this makes it clear it is done only once process-wide.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package lib | ||
|
||
import ( | ||
"math/rand" | ||
"sync" | ||
"time" | ||
) | ||
|
||
var ( | ||
once sync.Once | ||
) | ||
|
||
// SeedMathRand provides weak, but guaranteed seeding, which is better than | ||
// running with Go's default seed of 1. A call to SeedMathRand() is expected | ||
// to be called via init(), but never a second time. | ||
func SeedMathRand() { | ||
once.Do(func() { rand.Seed(time.Now().UTC().UnixNano()) }) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters