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
+5 -1
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