summaryrefslogtreecommitdiffstats
path: root/routers/dev/debug.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/dev/debug.go')
-rw-r--r--routers/dev/debug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/dev/debug.go b/routers/dev/debug.go
index 6ef40a6226..7d737d885e 100644
--- a/routers/dev/debug.go
+++ b/routers/dev/debug.go
@@ -14,5 +14,5 @@ func RegisterDebugRoutes(r *macaron.Macaron) {
r.Any("/debug/pprof/cmdline", pprof.Cmdline)
r.Any("/debug/pprof/profile", pprof.Profile)
r.Any("/debug/pprof/symbol", pprof.Symbol)
- r.Any("/debug/pprof/**", pprof.Index)
+ r.Any("/debug/pprof/*", pprof.Index)
}