This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-9-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 0b1502a27dc7f634610b7d37d5361ad7b6ef60a0 Author: Jed Cunningham <[email protected]> AuthorDate: Fri Apr 12 16:05:13 2024 -0400 Fix `sql_alchemy_engine_args` config example (#38971) It's json, not python, so we need lowercase bools. (cherry picked from commit 61501796cad953042aafcefa960698da6a40c5bd) --- airflow/config_templates/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/config_templates/config.yml b/airflow/config_templates/config.yml index c07dcb42cc..60a9d3c7dc 100644 --- a/airflow/config_templates/config.yml +++ b/airflow/config_templates/config.yml @@ -528,7 +528,7 @@ database: version_added: 2.3.0 type: string sensitive: true - example: '{"arg1": True}' + example: '{"arg1": true}' default: ~ sql_engine_encoding: description: |
