1
0
Эх сурвалжийг харах

Fix e2e GET timeout, was *1000 twice :facepalm

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif 5 жил өмнө
parent
commit
7490584a41

+ 2 - 1
tests/framework/e2e.go

@@ -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 {