We start seeing more tests related to http2 behavior. Let's figure it out if we can easily add it or we need a custom implementation.
Things to consider:
- we don't want to create an http2 client from scratch, that would be crazy
- for the things we normally test, one that comes to mind is the
Content-Length that might not be needed in http2 (or at least, the header can be skipped)
- we don't want to solve all the challenges of an http2 front that then might be downgraded to http/1.1 when proxying internally.
We start seeing more tests related to http2 behavior. Let's figure it out if we can easily add it or we need a custom implementation.
Things to consider:
Content-Lengththat might not be needed in http2 (or at least, the header can be skipped)