소스 검색

Fix e2e GET timeout, was *1000 twice :facepalm

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif 5 년 전
부모
커밋
7490584a41
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tests/framework/e2e.go

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