We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2d7fa7 commit fdf6bd6Copy full SHA for fdf6bd6
google/api_core/grpc_helpers.py
@@ -128,7 +128,7 @@ def __next__(self) -> P:
128
response_payload = google.protobuf.json_format.MessageToJson(result)
129
else:
130
response_payload = (
131
- f"{type(result).__name__}: {pickle.dumps(result)}"
+ f"{type(result).__name__}: {str(pickle.dumps(result))}"
132
)
133
grpc_response = {
134
"payload": response_payload,
google/api_core/grpc_helpers_async.py
@@ -109,7 +109,7 @@ async def read(self) -> P:
109
110
111
112
113
114
115
0 commit comments