allow setting GOMAXPROCS from environment variable (#12256)

* allow setting GOMAXPROCS from environment variable

* remove unused import
This commit is contained in:
keithchew 2023-04-11 15:28:48 +12:00 committed by GitHub
parent 763e9e3361
commit 6b1efff4e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@ import (
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"runtime"
runtimeDebug "runtime/debug" runtimeDebug "runtime/debug"
gethlog "github.com/ethereum/go-ethereum/log" gethlog "github.com/ethereum/go-ethereum/log"
@ -198,7 +197,6 @@ func main() {
if ctx.IsSet(flags.SetGCPercent.Name) { if ctx.IsSet(flags.SetGCPercent.Name) {
runtimeDebug.SetGCPercent(ctx.Int(flags.SetGCPercent.Name)) runtimeDebug.SetGCPercent(ctx.Int(flags.SetGCPercent.Name))
} }
runtime.GOMAXPROCS(runtime.NumCPU())
if err := debug.Setup(ctx); err != nil { if err := debug.Setup(ctx); err != nil {
return err return err
} }

View File

@ -7,7 +7,6 @@ import (
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"runtime"
runtimeDebug "runtime/debug" runtimeDebug "runtime/debug"
joonix "github.com/joonix/log" joonix "github.com/joonix/log"
@ -183,7 +182,6 @@ func main() {
log.WithError(err).Error("Cannot update data directory") log.WithError(err).Error("Cannot update data directory")
} }
runtime.GOMAXPROCS(runtime.NumCPU())
if err := debug.Setup(ctx); err != nil { if err := debug.Setup(ctx); err != nil {
return err return err
} }