Commit af4f0bd0 by James Cammarata

Fix for "argument must be an int, or have a fileno() method" error

The issue was that, when forks == 1, the _executor() function was
being called with None for the value of new_stdin.

Fixes #3841, #3902
parent 12a0a01c
...@@ -363,7 +363,10 @@ class Runner(object): ...@@ -363,7 +363,10 @@ class Runner(object):
return flags return flags
try: try:
self._new_stdin = new_stdin if not new_stdin:
self._new_stdin = os.fdopen(os.dup(sys.stdin.fileno()))
else:
self._new_stdin = new_stdin
exec_rc = self._executor_internal(host, new_stdin) exec_rc = self._executor_internal(host, new_stdin)
if type(exec_rc) != ReturnData: if type(exec_rc) != ReturnData:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment