Browse Source

Merge pull request #275 from nuss-justin/dev

Fix wrong method for profiling routes.
pull/283/head
无闻 11 years ago
parent
commit
21088a40f5
  1. 8
      routers/debug/debug.go

8
routers/debug/debug.go

@ -9,8 +9,8 @@ import (
) )
func RegisterRoutes(r martini.Router) { func RegisterRoutes(r martini.Router) {
r.Get("/debug/pprof/cmdline", pprof.Cmdline) r.Any("/debug/pprof/cmdline", pprof.Cmdline)
r.Get("/debug/pprof/profile", pprof.Profile) r.Any("/debug/pprof/profile", pprof.Profile)
r.Get("/debug/pprof/symbol", pprof.Symbol) r.Any("/debug/pprof/symbol", pprof.Symbol)
r.Get("/debug/pprof/**", pprof.Index) r.Any("/debug/pprof/**", pprof.Index)
} }

Loading…
Cancel
Save