jedcunningham commented on code in PR #31866:
URL: https://github.com/apache/airflow/pull/31866#discussion_r1231370161


##########
airflow/serialization/serde.py:
##########
@@ -276,7 +276,11 @@ def deserialize(o: T | None, full=True, type_hint: Any = 
None) -> object:
 def _convert(old: dict) -> dict:
     """Converts an old style serialization to new style."""
     if OLD_TYPE in old and OLD_DATA in old:
-        return {CLASSNAME: old[OLD_TYPE], VERSION: DEFAULT_VERSION, DATA: 
old[OLD_DATA][OLD_DATA]}
+        # Added to handle for handling xcom data from airflow 2.5.2

Review Comment:
   ```suggestion
           # Added to handle for handling xcom data from airflow 2.5.2
   ```
   
   This comment feels a little weird to me. Is this really just 2.5.2, or <2.6?



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