Slightly more robust HTTP stress test

This commit is contained in:
Jakob Borg 2014-10-24 10:01:44 +02:00
parent 51743461ee
commit 7d1c720b84
1 changed files with 4 additions and 1 deletions

View File

@ -51,7 +51,10 @@ func TestStressHTTP(t *testing.T) {
tc := &tls.Config{InsecureSkipVerify: true}
tr := &http.Transport{
TLSClientConfig: tc,
TLSClientConfig: tc,
DisableKeepAlives: true,
ResponseHeaderTimeout: time.Second,
TLSHandshakeTimeout: time.Second,
}
client := &http.Client{
Transport: tr,