From 1a05f9d0a2e2414f27bb839aa235823b907688ce Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 6 Sep 2013 09:39:22 -0700 Subject: [PATCH] queue: fix stderr redirect Signed-off-by: Sage Weil --- teuthology/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index 0c8b5f5073277..ef3e72c31c356 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -222,7 +222,7 @@ def run_job(job_config, archive_path, teuth_bin_path): p = subprocess.Popen( args=arg, close_fds=True, - stderr=subprocess.STDOUT, + stderr=subprocess.PIPE, ) child = logging.getLogger(__name__ + '.child') for line in p.stderr: -- 2.39.5