When the airflow webserver shows up errors like Broken DAG: [] , how and where can we find the full stacktrace for these excepti
Broken DAG: []
The accepted answer works in almost all cases to validate DAGs and debug errors if any.
If you are using docker-compose to run airflow, you should do this:
docker-compose
docker-compose exec airflow airflow list_dags
It runs the same command inside the running container.