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
When the return value of an RPC method fails to serialize the server drops the connection and the client only sees ConnectionLostException without access to the underlying issue (serialization exception).
It would be better if the client could somehow receive the serialization exception.
The text was updated successfully, but these errors were encountered:
Previous to this change, a failure to serialize a response would lead the server to terminate the connection (since a response is required). With this change, we instead keep the connection going but send an error response to the client with the serialization error.
We also (still) log the serialization failure on the server.
Fixesmicrosoft#549
Previous to this change, a failure to serialize a response would lead the server to terminate the connection (since a response is required). With this change, we instead keep the connection going but send an error response to the client with the serialization error.
We also (still) log the serialization failure on the server.
Fixesmicrosoft#549
When the return value of an RPC method fails to serialize the server drops the connection and the client only sees ConnectionLostException without access to the underlying issue (serialization exception).
It would be better if the client could somehow receive the serialization exception.
The text was updated successfully, but these errors were encountered: