kacpermuda commented on code in PR #51305:
URL: https://github.com/apache/airflow/pull/51305#discussion_r2123463169
##########
providers/openlineage/src/airflow/providers/openlineage/plugins/listener.py:
##########
@@ -205,7 +205,7 @@ def on_running():
code_location=None,
nominal_start_time=data_interval_start,
nominal_end_time=data_interval_end,
- owners=dag.owner.split(", "),
+ owners=[x.strip() for x in task.owner.split(",")],
Review Comment:
Done, also added separate test cases for that scenario.
--
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]