caddyhttp: Fix for nil handlerErr.Err (#4977)

This commit is contained in:
Francis Lavoie 2022-08-23 10:17:46 -04:00 committed by GitHub
parent 72541f1cb8
commit a22c08a638
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -528,7 +528,11 @@ func (*HTTPErrorConfig) WithError(r *http.Request, err error) *http.Request {
repl.Set("http.error.status_text", http.StatusText(handlerErr.StatusCode))
repl.Set("http.error.id", handlerErr.ID)
repl.Set("http.error.trace", handlerErr.Trace)
repl.Set("http.error.message", handlerErr.Err.Error())
if handlerErr.Err != nil {
repl.Set("http.error.message", handlerErr.Err.Error())
} else {
repl.Set("http.error.message", http.StatusText(handlerErr.StatusCode))
}
}
return r