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
If a client response handler returns before all messages have been received (i.e. the user has what they need from the response) then the stream might throw because of an unclean close.
This can happens because the HTTP/2 stream closes uncleanly and NIO's async channel throws this error.
The text was updated successfully, but these errors were encountered:
glbrntt
added a commit
to glbrntt/grpc-swift-nio-transport
that referenced
this issue
Dec 6, 2024
Motivation:
A couple of tests fail sometimes, the root cause of which is grpc#43.
Modifications:
- Wait for all messages to be received before closing
Result:
Tests are more stable
Motivation:
A couple of tests fail sometimes, the root cause of which is #43.
Modifications:
- Wait for all messages to be received before closing
Result:
Tests are more stable
If a client response handler returns before all messages have been received (i.e. the user has what they need from the response) then the stream might throw because of an unclean close.
This can happens because the HTTP/2 stream closes uncleanly and NIO's async channel throws this error.
The text was updated successfully, but these errors were encountered: