Simplify random seed initialization
There is no need to set the time zone as the result does not depend on it
This commit is contained in:
@@ -47,7 +47,7 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
rand.Seed(time.Now().UTC().UnixNano())
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
|
||||
hyperkubeCommand, allCommandFns := NewHyperKubeCommand(server.SetupSignalHandler())
|
||||
|
||||
|
Reference in New Issue
Block a user