dstandish commented on code in PR #48006:
URL: https://github.com/apache/airflow/pull/48006#discussion_r2006150559
##########
airflow/models/mappedoperator.py:
##########
@@ -57,6 +60,13 @@ def expand_start_from_trigger(self, *, context: Context,
session: Session) -> bo
:meta private:
"""
+ if self.partial_kwargs.get("start_from_trigger",
self.start_from_trigger):
+ log.warning(
+ "Starting a mapped task from triggerer is currently
unsupported",
+ task_id=self.task_id,
+ dag_id=self.dag_id,
+ )
+ return False
Review Comment:
@Lee-W is going to look at this tomorrow; but for now this ensures that
scheduler does not blow up in this case. i figure warning cus it will still
run fine. it will just start on operator then defer
--
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]