uranusjr commented on code in PR #35017:
URL: https://github.com/apache/airflow/pull/35017#discussion_r1390706598


##########
docs/apache-airflow/core-concepts/operators.rst:
##########
@@ -185,10 +185,23 @@ This will fail with ``TemplateNotFound: cat script.sh``, 
but we can prevent airf
 
     fixed_print_script = BashOperator(
         task_id="fixed_print_script",
-        bash_callable="cat script.sh",
+        bash_command="cat script.sh",
     )
     fixed_print_script.template_ext = ()

Review Comment:
   Let’s move the `literal` solution before this. We want to recommend it over 
this somewhat hacky workaround.



##########
docs/apache-airflow/core-concepts/operators.rst:
##########
@@ -185,10 +185,23 @@ This will fail with ``TemplateNotFound: cat script.sh``, 
but we can prevent airf
 
     fixed_print_script = BashOperator(
         task_id="fixed_print_script",
-        bash_callable="cat script.sh",
+        bash_command="cat script.sh",
     )
     fixed_print_script.template_ext = ()

Review Comment:
   Let’s move the `literal` solution before this. We want to recommend it over 
this somewhat hacky workaround.



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to