dstandish commented on code in PR #28191:
URL: https://github.com/apache/airflow/pull/28191#discussion_r1049262354
##########
airflow/models/xcom.py:
##########
@@ -723,6 +723,20 @@ def __eq__(self, other: Any) -> bool:
return all(x == y for x, y in z)
return NotImplemented
+ def __getstate__(self) -> Any:
+ # We don't want to get into the trouble to pickle the entire SQLAlchemy
Review Comment:
got you ... ok then i would just suggest changing to "go _through the
trouble of pickling the"
##########
airflow/models/xcom.py:
##########
@@ -723,6 +723,20 @@ def __eq__(self, other: Any) -> bool:
return all(x == y for x, y in z)
return NotImplemented
+ def __getstate__(self) -> Any:
+ # We don't want to get into the trouble to pickle the entire SQLAlchemy
Review Comment:
got you ... ok then i would just suggest changing to "go _through the
trouble of pickling_ the"
--
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]