You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Envoy only supports http2 connections to the upstream hosts with prior knowledge. Any upgrade request from http1.1 to http2 from the client is not supported.
Can this be supported?
Thanks!
The text was updated successfully, but these errors were encountered:
This can be supported. There are two ways that I can see this being implemented functionality-wise.
Build functionality into the existing HTTP/2 connection pool that assumes that upgrade is required, but will always succeed. This is relatively simple to implement.
Support a new connection pool which can operate in both HTTP/1 and HTTP/2 modes depending on upgrade. If this is required I would implement an entirely new connection pool implementation. This is a lot more work.
Envoy only supports http2 connections to the upstream hosts with prior knowledge. Any upgrade request from http1.1 to http2 from the client is not supported.
Can this be supported?
Thanks!
The text was updated successfully, but these errors were encountered: