jason810496 commented on code in PR #49470:
URL: https://github.com/apache/airflow/pull/49470#discussion_r2160353070
##########
providers/opensearch/tests/unit/opensearch/log/test_os_task_handler.py:
##########
@@ -204,6 +204,7 @@ def test_read(self, ti):
"on 2023-07-09 07:47:32+00:00"
)
if AIRFLOW_V_3_0_PLUS:
+ logs = list(logs)
Review Comment:
After this refactor, the return type of `.read` method will be iterator, so
we need to add the `list(logs)` to make the validation in test easier.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]