This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 645413bc845 Hide legacy sql connection (#64923)
645413bc845 is described below
commit 645413bc845ddba0e6f304a26ba12f7efce5506d
Author: Jens Scheffler <[email protected]>
AuthorDate: Thu Apr 9 20:28:22 2026 +0200
Hide legacy sql connection (#64923)
---
shared/configuration/src/airflow_shared/configuration/parser.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/shared/configuration/src/airflow_shared/configuration/parser.py
b/shared/configuration/src/airflow_shared/configuration/parser.py
index 1ec7664a509..b47d773405c 100644
--- a/shared/configuration/src/airflow_shared/configuration/parser.py
+++ b/shared/configuration/src/airflow_shared/configuration/parser.py
@@ -258,6 +258,7 @@ class AirflowConfigParser(ConfigParser):
("api", "fallback_page_limit"): ("api", "page_size", "3.2.0"),
("workers", "missing_dag_retries"): ("workers", "missing_dag_retires",
"3.1.8"),
("core", "execution_api_server_url"): ("workers",
"execution_api_server_url", "3.0"),
+ ("database", "sql_alchemy_conn"): ("core", "sql_alchemy_conn", "3.0"),
}
# A mapping of new section -> (old section, since_version).