From 75daf89a49f8b0f2e6364188a1ad6e124ef30f4b Mon Sep 17 00:00:00 2001 From: Kiran Kamineni Date: Fri, 30 Aug 2019 14:01:59 -0700 Subject: Remove double thread restriction on build The double thread restriction on the build was introduced to alleviate runtime memory exceptions. Now that we have a larger VM for builds, this is not required. Issue-ID: MULTICLOUD-666 Change-Id: I7568c094a3b4ef0b33dde456d4abfacd0606ffc8 Signed-off-by: Kiran Kamineni --- src/k8splugin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile index 55449947..d5bdb6fc 100644 --- a/src/k8splugin/Makefile +++ b/src/k8splugin/Makefile @@ -44,5 +44,5 @@ clean: .PHONY: cover cover: - @go test -p 2 ./... -coverprofile=coverage.out + @go test ./... -coverprofile=coverage.out @go tool cover -html=coverage.out -o coverage.html -- cgit 1.2.3-korg