Web handler returns 404 for favicon requests

This commit is contained in:
Bernerd Schaefer 2013-05-06 09:56:32 +02:00
parent b886a14cfc
commit 9183302b1f
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,10 @@ type WebService struct {
func (w WebService) ServeForever() error {
gorest.RegisterService(w.MetricsHandler)
exp.Handle("/favicon.ico", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "", 404)
}))
// TODO(julius): This will need to be rewritten once the exp package provides
// the coarse mux behaviors via a wrapper function.
exp.Handle("/debug/pprof/", http.HandlerFunc(pprof.Index))