From 8fca16ac454aca93ac9215d3bc1a4355e02101e7 Mon Sep 17 00:00:00 2001 From: Richard Belleville Date: Thu, 2 Sep 2021 13:25:15 -0700 Subject: [PATCH] Add compute_engine_channel_credentials to __all__ (#27235) * Add compute_engine_channel_credentials to __all__ * And amend api_test --- src/python/grpcio/grpc/__init__.py | 1 + src/python/grpcio_tests/tests/unit/_api_test.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/python/grpcio/grpc/__init__.py b/src/python/grpcio/grpc/__init__.py index 628535da009..bc645e5750e 100644 --- a/src/python/grpcio/grpc/__init__.py +++ b/src/python/grpcio/grpc/__init__.py @@ -2144,6 +2144,7 @@ __all__ = ( 'access_token_call_credentials', 'composite_call_credentials', 'composite_channel_credentials', + 'compute_engine_channel_credentials', 'local_channel_credentials', 'local_server_credentials', 'alts_channel_credentials', diff --git a/src/python/grpcio_tests/tests/unit/_api_test.py b/src/python/grpcio_tests/tests/unit/_api_test.py index bf3c72dd230..c536328142d 100644 --- a/src/python/grpcio_tests/tests/unit/_api_test.py +++ b/src/python/grpcio_tests/tests/unit/_api_test.py @@ -75,6 +75,7 @@ class AllTest(unittest.TestCase): 'access_token_call_credentials', 'composite_call_credentials', 'composite_channel_credentials', + 'compute_engine_channel_credentials', 'ssl_server_credentials', 'ssl_server_certificate_configuration', 'dynamic_ssl_server_credentials',