We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0501635 commit 3e94687Copy full SHA for 3e94687
1 file changed
airflow-core/docs/faq.rst
@@ -361,9 +361,9 @@ How to avoid version inflation
361
362
from airflow.providers.standard.operators.bash import BashOperator
363
364
- # GOOD: the template is resolved at execution time, not parse time
365
BashOperator(
366
task_id="echo_date",
+ # GOOD: the template is resolved at execution time, not parse time
367
bash_command="echo {{ ds }}",
368
)
369
@@ -373,9 +373,9 @@ How to avoid version inflation
373
374
375
376
- # GOOD: Variable is resolved at execution time via template
377
378
task_id="echo_var",
+ # GOOD: Variable is resolved at execution time via template
379
bash_command="echo {{ var.value.my_variable }}",
380
381
0 commit comments