ephraimbuddy commented on pull request #16823:
URL: https://github.com/apache/airflow/pull/16823#issuecomment-875041504


   One thing that one can do if he's able to control the xcom_key:
   
   In overriding the `orm_deserialize_value` we can do something like:
   
   ```
   def orm_deserialize_value(self):
       if self.key.starts_with('df'):
           return 'Xcom uploaded to GCS'
       return BaseXCom.deserialize_value(self)
   ```


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