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
An often seen pattern is to CHECK(client.Write(...)) or if(client.Write(...)).
In case of a connection issue, no details are given whether the connection dropped or authentication failed.
A better way would be to return grpc::Status for Client::Write and related methods.
The text was updated successfully, but these errors were encountered:
An often seen pattern is to
CHECK(client.Write(...))
orif(client.Write(...))
.In case of a connection issue, no details are given whether the connection dropped or authentication failed.
A better way would be to return
grpc::Status
forClient::Write
and related methods.The text was updated successfully, but these errors were encountered: