diff --git a/go/viperutil/debug/handler.go b/go/viperutil/debug/handler.go index 07442dd13ab..43d83d235a4 100644 --- a/go/viperutil/debug/handler.go +++ b/go/viperutil/debug/handler.go @@ -77,6 +77,6 @@ func HandlerFunc(w http.ResponseWriter, r *http.Request) { return } default: - http.Error(w, fmt.Sprintf("unsupported config format %s", format), http.StatusBadRequest) + http.Error(w, "unsupported config format", http.StatusBadRequest) } }