Search before asking
Description
Right now, when a transport-level RPC fails (socket error, disconnect), the bindings surface it as CLIENT_ERROR_CODE = -2. That hides the fact that it's retriable.
Java does this differently - it wraps the same kind of failure into NetworkException (code 1), which is in the retriable set. So Java clients automatically retry, so we need to close the gap.
Willingness to contribute
Search before asking
Description
Right now, when a transport-level RPC fails (socket error, disconnect), the bindings surface it as
CLIENT_ERROR_CODE = -2. That hides the fact that it's retriable.Java does this differently - it wraps the same kind of failure into
NetworkException(code 1), which is in the retriable set. So Java clients automatically retry, so we need to close the gap.Willingness to contribute