GitHub user starkmarkus added a comment to the discussion: ASGI app factory detected
That warning comes from Uvicorn, not from an Airflow setting directly. It means Uvicorn was given something that looks like an ASGI application factory, so it can still run it, but it warns because you would normally pass the equivalent factory option explicitly when starting Uvicorn. In this case, since the triggerer or scheduler start that internal server themselves, there probably is not an airflow.cfg option you can set manually for this. If everything is working, I would treat it as a harmless warning rather than something you need to fix locally. The Airflow-side fix would likely be for the code path that starts Uvicorn to pass the factory option explicitly so Uvicorn does not warn. In short: this is probably a logging cleanup issue on the Airflow side, not a user configuration problem. GitHub link: https://github.com/apache/airflow/discussions/68745#discussioncomment-17363621 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
