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
Currently, the server sends Error Code to the client to indicate error code, such as FailedPrecondition, in a simplistic manner. This makes it challenging for clients to differentiate and handle individual situations effectively.
It is necessary to directly transmit error codes generated by the server to allow clients to respond accordingly to each specific error. After transmitting the error codes, each error case needs to be handled individually by clients.
What would you like to be added:
Currently, the server sends Error Code to the client to indicate error code, such as
FailedPrecondition
, in a simplistic manner. This makes it challenging for clients to differentiate and handle individual situations effectively.yorkie/server/rpc/connecthelper/status.go
Lines 42 to 85 in 28ef053
It is necessary to directly transmit error codes generated by the server to allow clients to respond accordingly to each specific error. After transmitting the error codes, each error case needs to be handled individually by clients.
Why is this needed:
To improve client-side error handling and responsiveness to server-generated errors.
The text was updated successfully, but these errors were encountered: