Skip to content

Commit 3fdadbe

Browse files
chore: Update gapic-generator-python to 1.24.0 (#565)
* chore: Update gapic-generator-python to 1.24.0 PiperOrigin-RevId: 747419463 Source-Link: googleapis/googleapis@340579b Source-Link: googleapis/googleapis-gen@e8997ec Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTg5OTdlYzUxMzZlY2I2ZWQ5YTk2OWE0YzJmMTNiM2FiNmExN2MxMiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 0738c03 commit 3fdadbe

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

google/cloud/errorreporting_v1beta1/services/error_group_service/transports/grpc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,11 @@ def intercept_unary_unary(self, continuation, client_call_details, request):
7171
f"Sending request for {client_call_details.method}",
7272
extra={
7373
"serviceName": "google.devtools.clouderrorreporting.v1beta1.ErrorGroupService",
74-
"rpcName": client_call_details.method,
74+
"rpcName": str(client_call_details.method),
7575
"request": grpc_request,
7676
"metadata": grpc_request["metadata"],
7777
},
7878
)
79-
8079
response = continuation(client_call_details, request)
8180
if logging_enabled: # pragma: NO COVER
8281
response_metadata = response.trailing_metadata()

google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/grpc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,11 @@ def intercept_unary_unary(self, continuation, client_call_details, request):
7070
f"Sending request for {client_call_details.method}",
7171
extra={
7272
"serviceName": "google.devtools.clouderrorreporting.v1beta1.ErrorStatsService",
73-
"rpcName": client_call_details.method,
73+
"rpcName": str(client_call_details.method),
7474
"request": grpc_request,
7575
"metadata": grpc_request["metadata"],
7676
},
7777
)
78-
7978
response = continuation(client_call_details, request)
8079
if logging_enabled: # pragma: NO COVER
8180
response_metadata = response.trailing_metadata()

google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/grpc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,11 @@ def intercept_unary_unary(self, continuation, client_call_details, request):
7070
f"Sending request for {client_call_details.method}",
7171
extra={
7272
"serviceName": "google.devtools.clouderrorreporting.v1beta1.ReportErrorsService",
73-
"rpcName": client_call_details.method,
73+
"rpcName": str(client_call_details.method),
7474
"request": grpc_request,
7575
"metadata": grpc_request["metadata"],
7676
},
7777
)
78-
7978
response = continuation(client_call_details, request)
8079
if logging_enabled: # pragma: NO COVER
8180
response_metadata = response.trailing_metadata()

testing/constraints-3.13.txt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# -*- coding: utf-8 -*-
2-
# This constraints file is required for unit tests.
1+
# We use the constraints file for the latest Python version
2+
# (currently this file) to check that the latest
3+
# major versions of dependencies are supported in setup.py.
34
# List all library dependencies and extras in this file.
4-
google-api-core
5-
proto-plus
6-
protobuf
5+
# Require the latest major version be installed for each dependency.
6+
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
7+
# Then this file should have google-cloud-foo>=1
8+
google-api-core>=2
9+
google-auth>=2
10+
proto-plus>=1
11+
protobuf>=6

0 commit comments

Comments
 (0)