From 0c4119fb07e173eb48dfbd8cd1fc186237ba6e92 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Wed, 14 Jan 2015 13:10:45 -0800 Subject: [PATCH] Revert "Add --v=4 to e2e bash executions by default" This reverts commit abc621759ad72a42af7e113bb7623ee831fd9e60, which interacts weirdly with Jenkins on the GKE provider. Tactical revert until that can be figured out: https://github.com/GoogleCloudPlatform/kubernetes/issues/3474 --- hack/e2e.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/e2e.go b/hack/e2e.go index b65e6c78fad..ed7ba800092 100644 --- a/hack/e2e.go +++ b/hack/e2e.go @@ -531,9 +531,9 @@ func kubecfgArgs() string { // kubectl command (begining with a space). func kubectlArgs() string { if *checkVersionSkew { - return " --match-server-version --v=4" + return " --match-server-version" } - return " --v=4" + return "" } func bashWrap(cmd string) string {