kaxil commented on code in PR #56202:
URL: https://github.com/apache/airflow/pull/56202#discussion_r2388546800
##########
airflow-core/src/airflow/serialization/serialized_objects.py:
##########
@@ -2095,6 +2096,9 @@ def _deserialize_field_value(cls, field_name: str, value:
Any) -> Any:
# Reuse existing timedelta deserialization logic
if value is not None:
return cls._deserialize_timedelta(value)
+ # Return default for retry_delay to prevent None values during
migration
+ if field_name == "retry_delay":
+ return DEFAULT_RETRY_DELAY
Review Comment:
Cool, could you verify it with all these changes that this fixes your issue
as a final check
--
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]