From: Matt Joiner Date: Thu, 20 Nov 2014 02:00:43 +0000 (-0600) Subject: loghttp: The status server should run on the default mux X-Git-Tag: v1.0.0~1499 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d70f6bcd208380ce20d661b614b33086ec64d76c;p=btrtrc.git loghttp: The status server should run on the default mux --- diff --git a/util/loghttp.go b/util/loghttp.go index f222c41f..f324cc21 100644 --- a/util/loghttp.go +++ b/util/loghttp.go @@ -4,6 +4,7 @@ import ( "log" "net" "net/http" + _ "net/http/pprof" ) func LoggedHTTPServe(addr string) *http.ServeMux { @@ -26,7 +27,7 @@ func LoggedHTTPServe(addr string) *http.ServeMux { log.Fatalf("error creating http conn: %#v", err) } log.Printf("starting http server on http://%s", conn.Addr()) - mux := http.NewServeMux() + mux := http.DefaultServeMux go func() { defer conn.Close() err = (&http.Server{