Merge pull request #15733 from yujuhong/disable_keepalive

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2015-10-17 01:54:15 -07:00
commit 483c4a8d85

View File

@ -30,7 +30,7 @@ import (
func New() HTTPProber {
tlsConfig := &tls.Config{InsecureSkipVerify: true}
transport := &http.Transport{TLSClientConfig: tlsConfig}
transport := &http.Transport{TLSClientConfig: tlsConfig, DisableKeepAlives: true}
return httpProber{transport}
}