From: Zack Cerza Date: Thu, 12 Dec 2013 21:45:58 +0000 (-0600) Subject: Remove the child's stderr completely X-Git-Tag: v0.94.10~27^2^2~364^2~452 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3d23b9b20527a00d775a164ac2dafe1eb5129762;p=ceph.git Remove the child's stderr completely Signed-off-by: Zack Cerza --- diff --git a/teuthology/queue.py b/teuthology/queue.py index fd8a7790ad9..12cb56ea2e8 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -254,16 +254,8 @@ def run_job(job_config, teuth_bin_path): yaml.safe_dump(data=job_config, stream=tmp) tmp.flush() arg.append(tmp.name) - p = subprocess.Popen( - args=arg, - close_fds=True, - stderr=subprocess.PIPE, - ) + p = subprocess.Popen(args=arg) log.info("Job archive: %s", job_config['archive_path']) - # Disabling this for now to reduce noise - #child = logging.getLogger(__name__ + '.child') - #for line in p.stderr: - # child.error(': %s', line.rstrip('\n')) if teuth_config.results_server: log.info("Running with watchdog")