x/net/http2: cannot create 'MaxConcurrentStreams' streams with a single ClientConn #35860
Labels
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Attempt to create max concurrent streams with one client connection.
What did you expect to see?
Expected to see the last
RoundTrip
request succeed.What did you see instead?
The issue appears to be at https://github.com/golang/net/blob/master/http2/transport.go#L735:
where the test is to see whether an additional stream can be handled, but the condition should be
<=
instead of<
.The text was updated successfully, but these errors were encountered: