]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Don't show child's stderr, but show archive path
authorZack Cerza <zack@cerza.org>
Tue, 10 Dec 2013 19:19:56 +0000 (13:19 -0600)
committerZack Cerza <zack@cerza.org>
Tue, 10 Dec 2013 19:19:56 +0000 (13:19 -0600)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
teuthology/queue.py

index c4ef9f4bdc1aabe013ccb6620641308a8b64300b..fd8a7790ad92166cd7a30b2814b6eba9f4d8ae18 100644 (file)
@@ -259,9 +259,11 @@ def run_job(job_config, teuth_bin_path):
             close_fds=True,
             stderr=subprocess.PIPE,
         )
-        child = logging.getLogger(__name__ + '.child')
-        for line in p.stderr:
-            child.error(': %s', line.rstrip('\n'))
+        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")