prabhusneha commented on code in PR #48648:
URL: https://github.com/apache/airflow/pull/48648#discussion_r2026263642
##########
airflow-core/src/airflow/models/renderedtifields.py:
##########
@@ -61,7 +61,12 @@ def get_serialized_template_fields(task: Operator):
:meta private:
"""
- return {field: serialize_template_field(getattr(task, field), field) for
field in task.template_fields}
+ return {
+ field: serialize_template_field(
+ getattr(task, field), field, allow_tuple_conversion=field ==
"op_args"
Review Comment:
https://github.com/apache/airflow/blob/935a5dd0fb65cd89cc20b0a92f0080a90cd56379/airflow-core/src/airflow/serialization/helpers.py#L39-L43
I noticed that this was added for AF3. Removing this addresses this issue
but leads to test failures
So I decided to handle just op_args to keep things within the scope of the
issue
@amoghrajesh How do you suggest we proceed here?
--
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]