MarcusCramer91 opened a new issue, #56207:
URL: https://github.com/apache/airflow/issues/56207
### Apache Airflow version
3.1.0
### If "Other Airflow 2 version" selected, which one?
_No response_
### What happened?
When launching a child DAG via TriggerDagRunOperator, the DAG is stuck in
"queued" state why all tasks show up with status "No Status" in the UI. Can't
seem to find any logs related to the child DAG in the scheduler logs, as if it
doesn't notice it's there.
### What you think should happen instead?
Child DAG execution should work as normal.
### How to reproduce
child.py
```
from airflow.providers.standard.operators.empty import EmptyOperator
from airflow.sdk import dag
@dag(dag_id="test-orchestration-child")
def get_dag() -> None:
EmptyOperator(task_id="Empty")
get_dag()
```
parent.py
```
from airflow.providers.standard.operators.trigger_dagrun import
TriggerDagRunOperator
from airflow.sdk import dag
@dag(dag_id="test-orchestration-parent")
def get_dag() -> None:
TriggerDagRunOperator(
task_id="trigger-test-orchestration-child",
trigger_dag_id="test-orchestration-child",
wait_for_completion=True,
)
get_dag()
```
### Operating System
Debian GNU/Linux 12 (bookworm)
### Versions of Apache Airflow Providers
apache-airflow-providers-standard==1.8.0
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
_No response_
### Anything else?
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [x] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
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]