aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/grpc/_auth.py
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-12-01 16:00:17 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2017-12-01 16:00:17 +0000
commit628875374223df0174bd28535bbe151475822f3b (patch)
tree3f99a0907ef39fbc1736341a36d861b229573e57 /src/python/grpcio/grpc/_auth.py
parent95bcb4924b7a1bf5ee5629d1a2324e05cc3dfb23 (diff)
Correct AccessTokenAuthMetadataPlugin name
It was never itself a "call credentials" of any sort.
Diffstat (limited to 'src/python/grpcio/grpc/_auth.py')
-rw-r--r--src/python/grpcio/grpc/_auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/grpc/_auth.py b/src/python/grpcio/grpc/_auth.py
index c6542d0135..9a339b5900 100644
--- a/src/python/grpcio/grpc/_auth.py
+++ b/src/python/grpcio/grpc/_auth.py
@@ -63,7 +63,7 @@ class GoogleCallCredentials(grpc.AuthMetadataPlugin):
self._pool.shutdown(wait=False)
-class AccessTokenCallCredentials(grpc.AuthMetadataPlugin):
+class AccessTokenAuthMetadataPlugin(grpc.AuthMetadataPlugin):
"""Metadata wrapper for raw access token credentials."""
def __init__(self, access_token):