This is an automated email from the ASF dual-hosted git repository.
potiuk 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 0cdd401cda Add backward compatibility for core__sql_alchemy_conn__cmd
(#23441)
0cdd401cda is described below
commit 0cdd401cda61006a42afba243f1ad813315934d4
Author: c-thiel <[email protected]>
AuthorDate: Tue May 3 14:48:30 2022 +0200
Add backward compatibility for core__sql_alchemy_conn__cmd (#23441)
---
airflow/configuration.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/airflow/configuration.py b/airflow/configuration.py
index 3c696bd090..2b9bf6a6d2 100644
--- a/airflow/configuration.py
+++ b/airflow/configuration.py
@@ -140,6 +140,8 @@ class AirflowConfigParser(ConfigParser):
('atlas', 'password'),
('smtp', 'smtp_password'),
('webserver', 'secret_key'),
+ # The following options are deprecated
+ ('core', 'sql_alchemy_conn'),
}
# A mapping of (new section, new option) -> (old section, old option,
since_version).