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

View File

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