Merge pull request #835 from docker/e2e_GET_timeout

Fix e2e GET timeout, was *1000 twice
This commit is contained in:
Guillaume Tardif 2020-10-27 11:54:01 +01:00 committed by GitHub
commit 511df55a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,8 +216,9 @@ func HTTPGetWithRetry(t *testing.T, endpoint string, expectedStatus int, retryDe
err error
)
client := &http.Client{
Timeout: retryDelay * time.Second,
Timeout: retryDelay,
}
fmt.Printf(" [%s] GET %s\n", t.Name(), endpoint)
checkUp := func(t poll.LogT) poll.Result {
r, err = client.Get(endpoint)
if err != nil {