From 1e5b138994b0b6a4b834e4ffbf92d420a416138e Mon Sep 17 00:00:00 2001 From: Yanshu Zhao Date: Wed, 27 Jan 2021 22:39:15 +0000 Subject: [PATCH] Increase memory --- 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 15e4db0cec..86dba548a5 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -223,7 +223,7 @@ func validateStartWithProxy(ctx context.Context, t *testing.T, profile string) { // Use more memory so that we may reliably fit MySQL and nginx // changing api server so later in soft start we verify it didn't change - startArgs := append([]string{"start", "-p", profile, "--memory=4000", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...) + startArgs := append([]string{"start", "-p", profile, "--memory=6000", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...) c := exec.CommandContext(ctx, Target(), startArgs...) env := os.Environ() env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))