nyoungstudios commented on code in PR #39772:
URL: https://github.com/apache/airflow/pull/39772#discussion_r1685164164
##########
airflow/models/xcom_arg.py:
##########
@@ -255,6 +255,9 @@ def __getitem__(self, item: str) -> XComArg:
raise ValueError(f"XComArg only supports str lookup, received
{type(item).__name__}")
return PlainXComArg(operator=self.operator, key=item)
+ def __hash__(self) -> int:
+ return hash((self.operator.task_id, self.key))
Review Comment:
hi @uranusjr @potiuk, what is the status of reviewing this pull request?
--
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]