undo make sure resp body close on round trip even in error

This commit is contained in:
Dan Ballard 2025-03-05 09:36:42 -08:00
parent ae0b3c8b39
commit 8e7bdd6eb9
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 {