diff --git a/mantle/cmd/kola/kola.go b/mantle/cmd/kola/kola.go index 44341a1295..fc8a4066e9 100644 --- a/mantle/cmd/kola/kola.go +++ b/mantle/cmd/kola/kola.go @@ -17,7 +17,6 @@ package main import ( "encoding/json" "fmt" - "math/rand" "net/http" "os" "path/filepath" @@ -25,7 +24,6 @@ import ( "sort" "strings" "text/tabwriter" - "time" "github.com/coreos/pkg/capnslog" "github.com/pkg/errors" @@ -160,8 +158,6 @@ func init() { } func main() { - // initialize global state - rand.Seed(time.Now().UnixNano()) cli.Execute(root) }