mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
Be a little more generous with HTTP timeouts
This commit is contained in:
parent
f1e241940b
commit
5a46cf1d48
@ -53,12 +53,12 @@ func TestStressHTTP(t *testing.T) {
|
||||
tr := &http.Transport{
|
||||
TLSClientConfig: tc,
|
||||
DisableKeepAlives: true,
|
||||
ResponseHeaderTimeout: time.Second,
|
||||
TLSHandshakeTimeout: time.Second,
|
||||
ResponseHeaderTimeout: 10 * time.Second,
|
||||
TLSHandshakeTimeout: 10 * time.Second,
|
||||
}
|
||||
client := &http.Client{
|
||||
Transport: tr,
|
||||
Timeout: 2 * time.Second,
|
||||
Timeout: 10 * time.Second,
|
||||
}
|
||||
var wg sync.WaitGroup
|
||||
t0 := time.Now()
|
||||
|
Loading…
Reference in New Issue
Block a user