Merge pull request #121203 from enj/enj/i/h2_dos_flake

Skip TestUnauthenticatedHTTP2ClientConnectionClose http1 tests
This commit is contained in:
Kubernetes Prow Robot 2023-10-13 05:03:05 +02:00 committed by GitHub
commit b40f1c00e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -658,9 +658,10 @@ func TestUnauthenticatedHTTP2ClientConnectionClose(t *testing.T) {
f(t, http2.NextProtoTLS, tc.expectConnections)
})
t.Run("http/1.1", func(t *testing.T) {
f(t, "http/1.1", 1)
})
// http1 connection reuse occasionally flakes on CI, skipping for now
// t.Run("http/1.1", func(t *testing.T) {
// f(t, "http/1.1", 1)
// })
})
}
}