Remove call to set GOMAXPROCS (#4010)

* Remove call to set GOMAXPROCS

* Remove runtime import
This commit is contained in:
Aaron Wood 2017-01-23 18:30:40 -05:00 committed by 无闻
parent 3143e35d83
commit 64788ffff6

View File

@ -9,7 +9,6 @@ package main
import (
"os"
"runtime"
"github.com/urfave/cli"
@ -20,7 +19,6 @@ import (
const APP_VER = "0.9.115.0103"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
setting.AppVer = APP_VER
}