make sure resp body close on round trip even in error

This commit is contained in:
Dan Ballard 2025-03-05 09:33:05 -08:00
parent 2b102d8051
commit ae0b3c8b39
1 changed files with 1 additions and 1 deletions

View File

@ -215,13 +215,13 @@ func pass(res http.ResponseWriter, req *http.Request, listenPort, proxyPort int)
var transport http.Transport
resp, err := transport.RoundTrip(req)
defer resp.Body.Close()
if err != nil {
log.Errorf("Error fetching: %v\n", err.Error())
http.Error(res, err.Error(), http.StatusServiceUnavailable)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {