Merge pull request #5111 from Amit-PivotalLabs/fix-etcdctl-unset-env

etcdctl: unset ETCDCTL_API env var properly
This commit is contained in:
Xiang Li 2016-04-15 16:32:42 -07:00
commit 73b48dd8eb

View File

@ -30,7 +30,7 @@ const (
func main() {
apiv := os.Getenv(apiEnv)
// unset apiEnv to avoid side-effect for future env and flag parsing.
os.Unsetenv(apiv)
os.Unsetenv(apiEnv)
if len(apiv) == 0 || apiv == "2" {
ctlv2.Start()
return