Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
fix: remove client recv msg limit and add enums to types/__init__.py (
Browse files Browse the repository at this point in the history
#40)

PiperOrigin-RevId: 347055288

Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Dec 11 12:44:37 2020 -0800
Source-Repo: googleapis/googleapis
Source-Sha: dd372aa22ded7a8ba6f0e03a80e06358a3fa0907
Source-Link: googleapis/googleapis@dd372aa
  • Loading branch information
yoshi-automation committed Dec 28, 2020
1 parent 7c68211 commit 2333089
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 6 deletions.
Expand Up @@ -28,7 +28,6 @@
_transport_registry["grpc"] = AccessApprovalGrpcTransport
_transport_registry["grpc_asyncio"] = AccessApprovalGrpcAsyncIOTransport


__all__ = (
"AccessApprovalTransport",
"AccessApprovalGrpcTransport",
Expand Down
Expand Up @@ -181,6 +181,10 @@ def __init__(
ssl_credentials=ssl_credentials,
scopes=scopes or self.AUTH_SCOPES,
quota_project_id=quota_project_id,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)
self._ssl_channel_credentials = ssl_credentials
else:
Expand All @@ -199,6 +203,10 @@ def __init__(
ssl_credentials=ssl_channel_credentials,
scopes=scopes or self.AUTH_SCOPES,
quota_project_id=quota_project_id,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)

self._stubs = {} # type: Dict[str, Callable]
Expand All @@ -225,7 +233,7 @@ def create_channel(
) -> grpc.Channel:
"""Create and return a gRPC channel object.
Args:
address (Optionsl[str]): The host for the channel to use.
address (Optional[str]): The host for the channel to use.
credentials (Optional[~.Credentials]): The
authorization credentials to attach to requests. These
credentials identify this application to the service. If
Expand Down
Expand Up @@ -226,6 +226,10 @@ def __init__(
ssl_credentials=ssl_credentials,
scopes=scopes or self.AUTH_SCOPES,
quota_project_id=quota_project_id,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)
self._ssl_channel_credentials = ssl_credentials
else:
Expand All @@ -244,6 +248,10 @@ def __init__(
ssl_credentials=ssl_channel_credentials,
scopes=scopes or self.AUTH_SCOPES,
quota_project_id=quota_project_id,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)

# Run the base constructor.
Expand Down
3 changes: 2 additions & 1 deletion google/cloud/accessapproval_v1/types/__init__.py
Expand Up @@ -32,9 +32,9 @@
GetAccessApprovalSettingsMessage,
UpdateAccessApprovalSettingsMessage,
DeleteAccessApprovalSettingsMessage,
EnrollmentLevel,
)


__all__ = (
"AccessLocations",
"AccessReason",
Expand All @@ -52,4 +52,5 @@
"GetAccessApprovalSettingsMessage",
"UpdateAccessApprovalSettingsMessage",
"DeleteAccessApprovalSettingsMessage",
"EnrollmentLevel",
)
6 changes: 3 additions & 3 deletions synth.metadata
Expand Up @@ -4,15 +4,15 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/python-access-approval.git",
"sha": "bdf9e41f796e8da5db53d54c8bb2da4d7ee24acc"
"sha": "7c682116987ed328a58d788b10f93e0a0d09bf73"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "3ac5ef0436d8dfeb2ca0091dc7fa8012da1c85af",
"internalRef": "342835449"
"sha": "dd372aa22ded7a8ba6f0e03a80e06358a3fa0907",
"internalRef": "347055288"
}
},
{
Expand Down
8 changes: 8 additions & 0 deletions tests/unit/gapic/accessapproval_v1/test_access_approval.py
Expand Up @@ -2238,6 +2238,10 @@ def test_access_approval_transport_channel_mtls_with_client_cert_source(
scopes=("https://www.googleapis.com/auth/cloud-platform",),
ssl_credentials=mock_ssl_cred,
quota_project_id=None,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)
assert transport.grpc_channel == mock_grpc_channel
assert transport._ssl_channel_credentials == mock_ssl_cred
Expand Down Expand Up @@ -2279,6 +2283,10 @@ def test_access_approval_transport_channel_mtls_with_adc(transport_class):
scopes=("https://www.googleapis.com/auth/cloud-platform",),
ssl_credentials=mock_ssl_cred,
quota_project_id=None,
options=[
("grpc.max_send_message_length", -1),
("grpc.max_receive_message_length", -1),
],
)
assert transport.grpc_channel == mock_grpc_channel

Expand Down

0 comments on commit 2333089

Please sign in to comment.