From e3c024ce5e273a4e05f39a55d90e125377fe8bcf Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Wed, 1 Oct 2025 15:48:00 -0600 Subject: [PATCH] Fix config section in warning about db scheme --- 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 042d6c84834bc..8c70c8b80a875 100644 --- a/airflow-core/src/airflow/configuration.py +++ b/airflow-core/src/airflow/configuration.py @@ -793,7 +793,7 @@ def _upgrade_postgres_metastore_conn(self): 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,