Index: client/cmd/isolated/common.go |
diff --git a/client/cmd/isolated/common.go b/client/cmd/isolated/common.go |
index 90f1fb334da2b72fddf9f15f6d094baff325bca4..1666e39b257007b4d32e662f054125b636577f23 100644 |
--- a/client/cmd/isolated/common.go |
+++ b/client/cmd/isolated/common.go |
@@ -5,11 +5,17 @@ |
package main |
import ( |
+ "runtime" |
+ |
"github.com/luci/luci-go/client/internal/common" |
"github.com/luci/luci-go/client/isolatedclient" |
"github.com/maruel/subcommands" |
) |
+func init() { |
+ runtime.GOMAXPROCS(runtime.NumCPU()) |
+} |
+ |
type commonFlags struct { |
subcommands.CommandRunBase |
defaultFlags common.Flags |