-
Bug
-
Resolution: Unresolved
-
Normal
-
None
-
4.16
-
Important
-
No
-
3
-
Sprint 246, Sprint 247, Sprint 248, Sprint 249, Sprint 250, Sprint 251, Sprint 252, Sprint 253, Sprint 254, NE Sprint 255, NE Sprint 256, NE Sprint 257, NE Sprint 258, NE Sprint 259, NE Sprint 260, NE Sprint 261, NE Sprint 262
-
17
-
Rejected
-
False
-
-
Release Note Not Required
Description of problem:
Version-Release number of selected component (if applicable):
How reproducible:
The openshift/origin/text/extended/router/http2.go tests don't run on AWS. We disabled this sometime ago. Let's enable this to see if it is still an issue. I have been running the http2 tests on AWS this week and I have not run into the original issue highlighted by the original bugzilla bug.
// platformHasHTTP2LoadBalancerService returns true where the default // router is exposed by a load balancer service and can support http/2 // clients. func platformHasHTTP2LoadBalancerService(platformType configv1.PlatformType) bool { switch platformType { case configv1.AzurePlatformType, configv1.GCPPlatformType: return true case configv1.AWSPlatformType: e2e.Logf("AWS support waiting on https://bugzilla.redhat.com/show_bug.cgi?id=1912413") fallthrough default: return false } }