From: Sage Weil Date: Fri, 6 Sep 2013 16:39:22 +0000 (-0700) Subject: queue: fix stderr redirect X-Git-Tag: 1.1.0~1895^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F77%2Fhead;p=teuthology.git queue: fix stderr redirect Signed-off-by: Sage Weil --- diff --git a/teuthology/queue.py b/teuthology/queue.py index 0c8b5f50..ef3e72c3 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: