caddyhttp: Fix for nil `handlerErr.Err` (#4977)
parent
72541f1cb8
commit
a22c08a638
|
@ -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.status_text", http.StatusText(handlerErr.StatusCode))
|
||||||
repl.Set("http.error.id", handlerErr.ID)
|
repl.Set("http.error.id", handlerErr.ID)
|
||||||
repl.Set("http.error.trace", handlerErr.Trace)
|
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
|
return r
|
||||||
|
|
Loading…
Reference in New Issue