mirror of
https://github.com/go-gitea/gitea
synced 2024-11-18 08:04:25 +00:00
Fix wrong method for profiling routes.
This commit is contained in:
parent
fd5412ec47
commit
10f932b952
@ -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…
Reference in New Issue
Block a user