jedcunningham commented on issue #45646: URL: https://github.com/apache/airflow/issues/45646#issuecomment-2617885733
Sounds like your db isn't migrated. Here is an example. First you need to set up a connection: ``` AIRFLOW_CONN_AIRFLOW_GIT_CONN='{"host": "https://github.com/apache/airflow"}' ``` Then, add this to your config: ``` [dag_processor] dag_bundle_config_list = [ { "name": "airflow_example_dags", "classpath": "airflow.dag_processing.bundles.git.GitDagBundle", "kwargs": {"tracking_ref": "main", "git_conn_id": "airflow_git_conn", subdir="airflow/example_dags"} } ] ``` However, something is broken right now and the processor is getting stuck on servicing the sockets. I'll have to dig into this tomorrow. In the meantime, you can safely go into the db and just put a string in the `dag.bundle_version` column. That will unblock you for now. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org