Skip to content
Snippets Groups Projects
Commit 30492b90 authored by Nathaniel Manista's avatar Nathaniel Manista Committed by GitHub
Browse files

Merge pull request #9041 from nathanielmanistaatgoogle/servicer_context_doc_strings-v1.0.x

ServicerContext methods doc string fix and tweak.
parents e528890b b2b6a9eb
No related branches found
No related tags found
No related merge requests found
...@@ -767,8 +767,8 @@ class ServicerContext(six.with_metaclass(abc.ABCMeta, RpcContext)): ...@@ -767,8 +767,8 @@ class ServicerContext(six.with_metaclass(abc.ABCMeta, RpcContext)):
gRPC runtime to determine the status code of the RPC. gRPC runtime to determine the status code of the RPC.
Args: Args:
code: The integer status code of the RPC to be transmitted to the code: A StatusCode value to be transmitted to the invocation side of the
invocation side of the RPC. RPC as the status code of the RPC.
""" """
raise NotImplementedError() raise NotImplementedError()
...@@ -780,8 +780,8 @@ class ServicerContext(six.with_metaclass(abc.ABCMeta, RpcContext)): ...@@ -780,8 +780,8 @@ class ServicerContext(six.with_metaclass(abc.ABCMeta, RpcContext)):
details to transmit. details to transmit.
Args: Args:
details: The details string of the RPC to be transmitted to details: A string to be transmitted to the invocation side of the RPC as
the invocation side of the RPC. the status details of the RPC.
""" """
raise NotImplementedError() raise NotImplementedError()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment