diff --git a/cmd/selenosis/main.go b/cmd/selenosis/main.go index 10a0b1f..83c01a2 100644 --- a/cmd/selenosis/main.go +++ b/cmd/selenosis/main.go @@ -11,8 +11,6 @@ import ( "syscall" "time" - "net/http/pprof" - "github.com/alcounit/selenosis" "github.com/alcounit/selenosis/config" "github.com/alcounit/selenosis/platform" @@ -105,7 +103,6 @@ func command() *cobra.Command { router.HandleFunc("/healthz", func(w http.ResponseWriter, _ *http.Request) { w.WriteHeader(http.StatusOK) }).Methods(http.MethodGet) - router.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index) srv := &http.Server{ Addr: address,