Close client connection after checking for release update (#3820)

This commit is contained in:
Aditya Manthramurthy 2017-03-01 22:48:55 +05:30 committed by Harshavardhana
parent 77c1998a38
commit 09e9fd745c

View File

@ -155,6 +155,10 @@ func downloadReleaseData(releaseChecksumURL string, timeout time.Duration) (data
client := &http.Client{ client := &http.Client{
Timeout: timeout, Timeout: timeout,
Transport: &http.Transport{
// need to close connection after usage.
DisableKeepAlives: true,
},
} }
resp, err := client.Do(req) resp, err := client.Do(req)
@ -164,6 +168,7 @@ func downloadReleaseData(releaseChecksumURL string, timeout time.Duration) (data
if resp == nil { if resp == nil {
return data, fmt.Errorf("No response from server to download URL %s", releaseChecksumURL) return data, fmt.Errorf("No response from server to download URL %s", releaseChecksumURL)
} }
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK { if resp.StatusCode != http.StatusOK {
return data, fmt.Errorf("Error downloading URL %s. Response: %v", releaseChecksumURL, resp.Status) return data, fmt.Errorf("Error downloading URL %s. Response: %v", releaseChecksumURL, resp.Status)