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
As far as I can tell, in Go today (I'm using 1.18), full duplex communication cannot work with their HTTP client. This is because http2.Transport.RoundTrip doesn't return until it has received an EOF from the request body reader, making it impossible to receive or access the response until the request body has been completely sent.
The text was updated successfully, but these errors were encountered:
As far as I can tell, in Go today (I'm using 1.18), full duplex communication cannot work with their HTTP client. This is because
http2.Transport.RoundTrip
doesn't return until it has received an EOF from the request body reader, making it impossible to receive or access the response until the request body has been completely sent.The text was updated successfully, but these errors were encountered: