mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-23 01:40:09 +08:00
reverseproxy: Emit debug log before checking error (#3425)
This way the upstream request will always be available even if it failed
This commit is contained in:
parent
c47ddbeffb
commit
812278acd8
|
@ -465,10 +465,6 @@ func (h *Handler) reverseProxy(rw http.ResponseWriter, req *http.Request, di Dia
|
|||
start := time.Now()
|
||||
res, err := h.Transport.RoundTrip(req)
|
||||
duration := time.Since(start)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
h.logger.Debug("upstream roundtrip",
|
||||
zap.String("upstream", di.Upstream.String()),
|
||||
zap.Object("request", caddyhttp.LoggableHTTPRequest{Request: req}),
|
||||
|
@ -476,6 +472,9 @@ func (h *Handler) reverseProxy(rw http.ResponseWriter, req *http.Request, di Dia
|
|||
zap.Duration("duration", duration),
|
||||
zap.Int("status", res.StatusCode),
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// update circuit breaker on current conditions
|
||||
if di.Upstream.cb != nil {
|
||||
|
|
Loading…
Reference in New Issue
Block a user