Fixes #782: Explicitly force stdin=subprocess.DEVNULL for compatibility with joblib/loki

This commit is contained in:
Charles Newey 2023-07-17 17:17:55 +01:00
parent df129c7ba3
commit 37dd98ca21

View File

@ -281,7 +281,7 @@ def run_async(
.. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects
"""
args = compile(stream_spec, cmd, overwrite_output=overwrite_output)
stdin_stream = subprocess.PIPE if pipe_stdin else None
stdin_stream = subprocess.PIPE if pipe_stdin else subprocess.DEVNULL
stdout_stream = subprocess.PIPE if pipe_stdout else None
stderr_stream = subprocess.PIPE if pipe_stderr else None
if quiet: