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
Copy file name to clipboardExpand all lines: packages/google-cloud-service-management/google/cloud/servicemanagement_v1/services/service_manager/async_client.py
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ async def list_services(
287
287
288
288
"""
289
289
# Create or coerce a protobuf request object.
290
-
# Sanity check: If we got a request object, we should *not* have
290
+
# Quick check: If we got a request object, we should *not* have
291
291
# gotten any keyword arguments that map to the request.
Copy file name to clipboardExpand all lines: packages/google-cloud-service-management/google/cloud/servicemanagement_v1/services/service_manager/client.py
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -470,7 +470,7 @@ def list_services(
470
470
471
471
"""
472
472
# Create or coerce a protobuf request object.
473
-
# Sanity check: If we got a request object, we should *not* have
473
+
# Quick check: If we got a request object, we should *not* have
474
474
# gotten any keyword arguments that map to the request.
Copy file name to clipboardExpand all lines: packages/google-cloud-service-management/google/cloud/servicemanagement_v1/services/service_manager/transports/grpc.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -164,8 +164,11 @@ def __init__(
164
164
ifnotself._grpc_channel:
165
165
self._grpc_channel=type(self).create_channel(
166
166
self._host,
167
+
# use the credentials which are saved
167
168
credentials=self._credentials,
168
-
credentials_file=credentials_file,
169
+
# Set ``credentials_file`` to ``None`` here as
170
+
# the credentials that we saved earlier should be used.
Copy file name to clipboardExpand all lines: packages/google-cloud-service-management/google/cloud/servicemanagement_v1/services/service_manager/transports/grpc_asyncio.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -209,8 +209,11 @@ def __init__(
209
209
ifnotself._grpc_channel:
210
210
self._grpc_channel=type(self).create_channel(
211
211
self._host,
212
+
# use the credentials which are saved
212
213
credentials=self._credentials,
213
-
credentials_file=credentials_file,
214
+
# Set ``credentials_file`` to ``None`` here as
215
+
# the credentials that we saved earlier should be used.
0 commit comments