make sure resp body close on round trip even in error
This commit is contained in:
parent
2b102d8051
commit
ae0b3c8b39
2
main.go
2
main.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue