cmd: don't set GOMAXPROCS by default

set by env GOMAXPROCS=xxx if you needed
This commit is contained in:
Delweng Zheng 2018-07-30 22:26:40 +08:00
parent 3ea8ac6a9a
commit fb0f708ee0

View file

@ -21,7 +21,6 @@ import (
"fmt"
"math"
"os"
"runtime"
godebug "runtime/debug"
"sort"
"strconv"
@ -198,8 +197,6 @@ func init() {
app.Flags = append(app.Flags, metricsFlags...)
app.Before = func(ctx *cli.Context) error {
runtime.GOMAXPROCS(runtime.NumCPU())
logdir := ""
if ctx.GlobalBool(utils.DashboardEnabledFlag.Name) {
logdir = (&node.Config{DataDir: utils.MakeDataDir(ctx)}).ResolvePath("logs")