This is an automated email from the ASF dual-hosted git repository.
ephraimanierobi 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 7aa5dca283a Fix config section in warning about db scheme (#56316)
7aa5dca283a is described below
commit 7aa5dca283ac41ca7c47184171189683491d33bd
Author: Jed Cunningham <[email protected]>
AuthorDate: Thu Oct 2 03:57:29 2025 -0600
Fix config section in warning about db scheme (#56316)
---
airflow-core/src/airflow/configuration.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/configuration.py
b/airflow-core/src/airflow/configuration.py
index 042d6c84834..8c70c8b80a8 100644
--- a/airflow-core/src/airflow/configuration.py
+++ b/airflow-core/src/airflow/configuration.py
@@ -793,7 +793,7 @@ class AirflowConfigParser(ConfigParser):
parsed = urlsplit(old_value)
if parsed.scheme in bad_schemes:
warnings.warn(
- f"Bad scheme in Airflow configuration core > sql_alchemy_conn:
`{parsed.scheme}`. "
+ f"Bad scheme in Airflow configuration [database]
sql_alchemy_conn: `{parsed.scheme}`. "
"As of SQLAlchemy 1.4 (adopted in Airflow 2.3) this is no
longer supported. You must "
f"change to `{good_scheme}` before the next Airflow release.",
FutureWarning,