Make the speculator serve up errors as plain text

... so that they are legible.
This commit is contained in:
Richard van der Hoff 2015-11-27 12:01:03 +00:00
parent e630f6c0c0
commit 2aa4773cc1

View file

@ -135,6 +135,7 @@ func generate(dir string) error {
}
func writeError(w http.ResponseWriter, code int, err error) {
w.Header().Set("Content-Type", "text/plain")
w.WriteHeader(code)
io.WriteString(w, fmt.Sprintf("%v\n", err))
}