Merge pull request #108981 from liggitt/skip-race

Temporarily disable TestCheckRetryClosesBody
This commit is contained in:
Kubernetes Prow Robot 2022-03-24 09:40:52 -07:00 committed by GitHub
commit 221b60fb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1371,6 +1371,8 @@ func (b *testBackoffManager) Sleep(d time.Duration) {
}
func TestCheckRetryClosesBody(t *testing.T) {
// unblock CI until http://issue.k8s.io/108906 is resolved in 1.24
t.Skip("http://issue.k8s.io/108906")
count := 0
ch := make(chan struct{})
testServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {