Add ENABLE_PPROF to app.ini and start pprof if true on localhost:6060 (#801)

* Add ENABLE_PPROF to app.ini and start pprof if true on localhost:6060

* Add comment for golint to blank pprof import
This commit is contained in:
Matthias Loibl 2017-02-05 14:06:25 +01:00 committed by Lunny Xiao
parent c73b7a65f5
commit 17c5e12e6e
2 changed files with 10 additions and 1 deletions

View file

@ -30,7 +30,7 @@ import (
_ "github.com/go-macaron/cache/redis"
"github.com/go-macaron/session"
_ "github.com/go-macaron/session/redis" // redis plugin for store session
"gopkg.in/ini.v1"
ini "gopkg.in/ini.v1"
"strk.kbt.io/projects/go/libravatar"
)
@ -79,6 +79,7 @@ var (
EnableGzip bool
LandingPageURL LandingPage
UnixSocketPermission uint32
EnablePprof bool
SSH = struct {
Disabled bool `ini:"DISABLE_SSH"`
@ -591,6 +592,7 @@ please consider changing to GITEA_CUSTOM`)
StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(workDir)
AppDataPath = sec.Key("APP_DATA_PATH").MustString("data")
EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
EnablePprof = sec.Key("ENABLE_PPROF").MustBool(false)
switch sec.Key("LANDING_PAGE").MustString("home") {
case "explore":