Subham-KRLX commented on issue #64884: URL: https://github.com/apache/airflow/issues/64884#issuecomment-4212141423
I have looked into this and found the cause When you run dag.test() Airflow tries to be efficient by only loading the specific DAG you are testing into the database However this means any other DAGs (like the one you are trying to trigger) are ignored and stay 'missing' from the DB When the trigger runs the API can't find that second DAG and gives a 404 error. I am working on a fix to make sure the target DAG is properly loaded so the trigger works correctly. -- 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]
