Merge pull request #1900 from redfoxli/patch-1

close socket when http client request over
This commit is contained in:
astaxie 2016-08-02 10:01:53 +08:00 committed by GitHub
commit 74778bb9d4
1 changed files with 4 additions and 3 deletions

View File

@ -412,6 +412,7 @@ func (b *BeegoHTTPRequest) DoRequest() (*http.Response, error) {
TLSClientConfig: b.setting.TLSClientConfig,
Proxy: b.setting.Proxy,
Dial: TimeoutDialer(b.setting.ConnectTimeout, b.setting.ReadWriteTimeout),
MaxIdleConnsPerHost: -1,
}
} else {
// if b.transport is *http.Transport then set the settings.