diff --git a/client/consul/consul_testing.go b/client/consul/consul_testing.go index c428439a9..81777be52 100644 --- a/client/consul/consul_testing.go +++ b/client/consul/consul_testing.go @@ -6,7 +6,6 @@ package consul import ( "crypto/md5" "encoding/hex" - "fmt" "github.com/hashicorp/go-hclog" "github.com/hashicorp/nomad/nomad/structs/config" @@ -28,7 +27,6 @@ func (mc *MockConsulClient) DeriveSITokenWithJWT(reqs map[string]JWTLoginRequest tokens := make(map[string]string, len(reqs)) for id := range reqs { - fmt.Println(id) hash := md5.Sum([]byte(id)) tokens[id] = hex.EncodeToString(hash[:]) }