Merge pull request #127 from coreos/fabxc-patch-1

Close response body on status code error
This commit is contained in:
Hongchao Deng 2016-09-21 15:43:11 -07:00 коммит произвёл GitHub
Родитель f077b1cd9d 9321b40064
Коммит 2a076f5948
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -164,6 +164,7 @@ func monitorEtcdCluster(host string, httpClient *http.Client, watchVersion strin
return
}
if resp.StatusCode != 200 {
resp.Body.Close()
errc <- errors.New("Invalid status code: " + resp.Status)
return
}