jwijffels commented on issue #19028:
URL: https://github.com/apache/airflow/issues/19028#issuecomment-989211129
Not sure if this related (although it looks like it when skimmin #15947) and
sorry to hack on this issue thread but in my setups I run quite some R scripts
through Airflow using the following `BashOperator `setup shown below.
The `BashOperator` commands don't show output (print statements in R) to the
logs any more which used to be the case in Airflow 1.10
```
args = {
'owner': 'jwijffels',
'run_as_user': 'anotheruser',
}
BashOperator(
task_id='go_get_something',
bash_command='Rscript "${PROJECT_HOME}/src/R/03-get-something.R"',
dag=dag)
```
--
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]