Lee-W commented on code in PR #44831:
URL: https://github.com/apache/airflow/pull/44831#discussion_r1897126807
##########
airflow/models/taskinstance.py:
##########
@@ -3642,6 +3654,35 @@ def duration_expression_update(
}
)
+ def _validate_inlet_outlet_assets_activeness(self, session: Session) ->
None:
+ if not self.task or not (self.task.outlets or self.task.inlets):
+ return
+
+ all_asset_unique_keys = {
+ AssetUniqueKey(inlet_or_outlet.name, inlet_or_outlet.uri)
Review Comment:
opps, missed this one. just updated
--
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]