From: Zack Cerza Date: Fri, 17 Nov 2023 20:34:21 +0000 (-0700) Subject: dispatcher: Drop supervisor output X-Git-Tag: 1.2.0~65^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=299e7a1f86b44cebc5f032e33cf0da433713e9c2;p=teuthology.git dispatcher: Drop supervisor output It gets logged to its own file in the job archive. Signed-off-by: Zack Cerza --- diff --git a/teuthology/dispatcher/__init__.py b/teuthology/dispatcher/__init__.py index 4aa2ca19db..02ed2ee709 100644 --- a/teuthology/dispatcher/__init__.py +++ b/teuthology/dispatcher/__init__.py @@ -180,7 +180,11 @@ def main(args): run_args.extend(["--job-config", job_config_path]) try: - job_proc = subprocess.Popen(run_args) + job_proc = subprocess.Popen( + run_args, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) job_procs.add(job_proc) log.info('Job supervisor PID: %s', job_proc.pid) except Exception: