Be a little more generous with HTTP timeouts

This commit is contained in:
Jakob Borg 2014-11-24 10:16:47 +01:00
parent f1e241940b
commit 5a46cf1d48

View File

@ -53,12 +53,12 @@ func TestStressHTTP(t *testing.T) {
tr := &http.Transport{ tr := &http.Transport{
TLSClientConfig: tc, TLSClientConfig: tc,
DisableKeepAlives: true, DisableKeepAlives: true,
ResponseHeaderTimeout: time.Second, ResponseHeaderTimeout: 10 * time.Second,
TLSHandshakeTimeout: time.Second, TLSHandshakeTimeout: 10 * time.Second,
} }
client := &http.Client{ client := &http.Client{
Transport: tr, Transport: tr,
Timeout: 2 * time.Second, Timeout: 10 * time.Second,
} }
var wg sync.WaitGroup var wg sync.WaitGroup
t0 := time.Now() t0 := time.Now()