Skip to content

Commit

Permalink
fix: set chunk size for async stream content (#702)
Browse files Browse the repository at this point in the history
* fix: set chunk size for async stream content

* add TODO comment
  • Loading branch information
ohmayr committed Sep 20, 2024
1 parent 58516ef commit 45b8a6d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion google/api_core/rest_streaming_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ def __init__(
):
self._response = response
self._chunk_size = 1024
self._response_itr = self._response.content().__aiter__()
# TODO(https://github.com/googleapis/python-api-core/issues/703): mypy does not recognize the abstract content
# method as an async generator as it looks for the `yield` keyword in the implementation.
# Given that the abstract method is not implemented, mypy fails to recognize it as an async generator.
# mypy warnings are silenced until the linked issue is resolved.
self._response_itr = self._response.content(self._chunk_size).__aiter__() # type: ignore
super(AsyncResponseIterator, self).__init__(
response_message_cls=response_message_cls
)
Expand Down

0 comments on commit 45b8a6d

Please sign in to comment.