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 we try to call a method that we don't know how to execute in RestGrpcAdapter (e.g. due to an unsupported streaming mode, or a lack of HTTP configuration) we should throw an RpcException with a NotImplemented status code and an informative message.
The text was updated successfully, but these errors were encountered:
- If a method is improperly configured, that should fail when trying to construct the client. (We can then have simple unit tests for that.)
- If a method is generally okay, but unsupported by REGAPIC, that should fail when called, with an informative RpcException
- If a method doesn't exist, that should fail when called, with an informative RpcException. (This shouldn't really happen - it would be a bug.)
Fixesgoogleapis#623
jskeet
added a commit
to jskeet/gax-dotnet
that referenced
this issue
Nov 25, 2022
- If a method is improperly configured, that should fail when trying to construct the client. (We can then have simple unit tests for that.)
- If a method is generally okay, but unsupported by REGAPIC, that should fail when called, with an informative RpcException
- If a method doesn't exist, that should fail when called, with an informative RpcException. (This shouldn't really happen - it would be a bug.)
Fixesgoogleapis#623
If we try to call a method that we don't know how to execute in RestGrpcAdapter (e.g. due to an unsupported streaming mode, or a lack of HTTP configuration) we should throw an RpcException with a NotImplemented status code and an informative message.
The text was updated successfully, but these errors were encountered: