From 3b1aa092f8a8df707eb386def624ff572813eeae Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 5 Jul 2013 01:20:08 -0400 Subject: [PATCH] Closing stdin too early. --- lib/ansible/runner/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py index 1498855e88e..f1a49bc1a6c 100644 --- a/lib/ansible/runner/__init__.py +++ b/lib/ansible/runner/__init__.py @@ -75,8 +75,6 @@ def _executor_hook(job_queue, result_queue, new_stdin): pass except: traceback.print_exc() - if new_stdin: - new_stdin.close() class HostVars(dict): ''' A special view of setup_cache that adds values from the inventory when needed. '''