konqui0 commented on a change in pull request #6767: [AIRFLOW-6208] Implement
fileno in StreamLogWriter
URL: https://github.com/apache/airflow/pull/6767#discussion_r356894253
##########
File path: airflow/utils/log/logging_mixin.py
##########
@@ -116,6 +116,13 @@ def isatty(self):
"""
return False
+ def fileno(self):
+ """
+ Returns the stdout file descriptor 1.
+ For compatibility reasons e.g python subprocess module stdout
redirection.
+ """
+ return 1
Review comment:
Is there a way to identify if the stream is stderr?
That's true, the only alternative I can think of would be creating a pipe,
returning its fd and writing everything written to that pipe.
I'm not sure if this would be an acceptable solution / 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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services