From 00c33d0a2252cf7bc08a099ef64c8dd0e2a668f8 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 12 Nov 2019 22:43:55 -0800 Subject: [PATCH] KubectlGetPods now requires --wait=true --- test/integration/functional_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 7b82aa7e7313..3a1a234e2424 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -114,7 +114,7 @@ func validateStartWithProxy(ctx context.Context, t *testing.T, profile string) { } // Use more memory so that we may reliably fit MySQL and nginx - startArgs := append([]string{"start", "-p", profile, "--wait=false", "--memory", "2500MB"}, StartArgs()...) + startArgs := append([]string{"start", "-p", profile, "--wait=true", "--memory", "2500MB"}, StartArgs()...) c := exec.CommandContext(ctx, Target(), startArgs...) env := os.Environ() env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))