dstandish commented on code in PR #48006: URL: https://github.com/apache/airflow/pull/48006#discussion_r2010497897
########## 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: ok -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org