bolkedebruin commented on code in PR #29355:
URL: https://github.com/apache/airflow/pull/29355#discussion_r1101582176


##########
airflow/serialization/serialized_objects.py:
##########
@@ -502,6 +504,8 @@ def deserialize(cls, encoded_var: Any) -> Any:
             return Dataset(**var)
         elif type_ == DAT.SIMPLE_TASK_INSTANCE:
             return SimpleTaskInstance(**cls.deserialize(var))
+        elif type_ == DAT.TASK_INSTANCE:

Review Comment:
   Am I incorrect in thinking that migration is a 2 line change in 
`internal_api_call` and you are not relying on any of the other 
serialized_objects (basically DAG)? If so then I would say do not add technical 
dept and migrate now. This allows us to call `serialized_objects` as stale and 
soon to be deprecated.
   
   Otherwise, keep it and and add it to the todo of AIP-44?



-- 
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]

Reply via email to