[
https://issues.apache.org/jira/browse/AIRFLOW-811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16203599#comment-16203599
]
Boris Tyukin commented on AIRFLOW-811:
--------------------------------------
no love for this PR? i think it is very useful one..
> Bash_operator dont read multiline output
> ----------------------------------------
>
> Key: AIRFLOW-811
> URL: https://issues.apache.org/jira/browse/AIRFLOW-811
> Project: Apache Airflow
> Issue Type: Bug
> Reporter: Jayesh
> Assignee: Jayesh
> Priority: Minor
>
> following piece of code is the root cause of it.
> {code}
> line = ''
> for line in iter(sp.stdout.readline, b''):
> line = line.decode(self.output_encoding).strip()
> logging.info(line)
> {code}
> I plan to fix it using string buffer instead of just 1 line string variable
> here.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)