potiuk commented on code in PR #32669:
URL: https://github.com/apache/airflow/pull/32669#discussion_r1267140135
##########
airflow/config_templates/config.yml.schema.json:
##########
@@ -72,6 +72,11 @@
"sensitive": {
"type": "boolean",
"description": "When true, this option is sensitive and
can be specified using AIRFLOW__{section}___{name}__SECRET or
AIRFLOW__{section}___{name}_CMD environment variables. See:
airflow.configuration.AirflowConfigParser.sensitive_config_values"
+ },
+ "is_template": {
+ "type": "boolean",
+ "description": "When true, this option is not processed by
format after being processed by AirflowConfigParser, The JINJA templates should
be encoded as {{{{ }}}} (they are converted to {{ }} in the final field
default), whereas the Python format strings should be encoded as `{{ }}` and
they are converted to { } in the final field default)",
+ "default": false
Review Comment:
Actually this description is slightly wrong (I managed to change it in the
way that we do not need `{{{{` any more. I will update the description to be
way shorter as well.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]