diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-08-30 14:01:59 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-08-30 14:02:05 -0700 |
commit | 75daf89a49f8b0f2e6364188a1ad6e124ef30f4b (patch) | |
tree | a2c4c4a15ae661efa9a6a3b967885b19216f3597 /src/k8splugin | |
parent | 99493b0f401c8644d7762851dd06527a4d9a816a (diff) |
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 <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/k8splugin')
-rw-r--r-- | src/k8splugin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |