guan404ming commented on code in PR #50487: URL: https://github.com/apache/airflow/pull/50487#discussion_r2084841870
########## providers/standard/src/airflow/providers/standard/sensors/external_task.py: ########## @@ -443,6 +443,10 @@ def execute_complete(self, context, event=None): self.log.info("External tasks %s has executed successfully.", self.external_task_ids) elif event["status"] == "skipped": raise AirflowSkipException("External job has skipped skipping.") + elif event["status"] == "failed": + if self.soft_fail: + raise AirflowSkipException("External job has failed skipping.") + raise AirflowException("External job has failed.") Review Comment: let me fix it -- 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