]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
queue: fix stderr redirect 77/head
authorSage Weil <sage@inktank.com>
Fri, 6 Sep 2013 16:39:22 +0000 (09:39 -0700)
committerSage Weil <sage@inktank.com>
Fri, 6 Sep 2013 16:39:30 +0000 (09:39 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/queue.py

index 0c8b5f50732779221851ca041d1a09f934098e6c..ef3e72c31c35683ecc297147a384a4bf58128f12 100644 (file)
@@ -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: