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
The code that handles shutting down on inboundConnectionError tends to hit InvalidStreamIDForPeer. This is because we attempt to send a GOAWAY with lastStreamID set to .maxID, which is technically an invalid stream ID for the peer. We should modify the check here, as it's reasonable to want to set .maxID in this case, even though the server cannot technically emit such a stream ID.
The text was updated successfully, but these errors were encountered:
The code that handles shutting down on inboundConnectionError tends to hit InvalidStreamIDForPeer. This is because we attempt to send a GOAWAY with lastStreamID set to
.maxID
, which is technically an invalid stream ID for the peer. We should modify the check here, as it's reasonable to want to set.maxID
in this case, even though the server cannot technically emit such a stream ID.The text was updated successfully, but these errors were encountered: