Lee2532 commented on issue #24100:
URL: https://github.com/apache/airflow/issues/24100#issuecomment-1145469820
When using an external task sensor, running DAG manually does not work
normally.
Therefore, I would like to add a parameter that allows the corresponding
external task sander to pass when triggering the corresponding TASK manually.
for example
`
wait_airflow_test = ExternalTaskSensor(
task_id="wait_airflow_test",
external_dag_id="airflow_sample",
external_task_id="start",
allowed_states=["success"],
failed_states=None,
execution_delta=None,
execution_date_fn=None,
check_existence=True,
dag=dag,
default_args=dag_args,
mode='reschedule',
timeout=5,
wait_task=False
)
`
--
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]