From e69da0a5ea7b8563a15025d6c464caa244606950 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 5 Mar 2014 14:13:04 -0600 Subject: [PATCH] Log job PID Signed-off-by: Zack Cerza --- teuthology/queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/queue.py b/teuthology/queue.py index 27c475367962a..aad21e6c7aed1 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -303,6 +303,7 @@ def run_job(job_config, teuth_bin_path): arg.append(tmp.name) p = subprocess.Popen(args=arg) log.info("Job archive: %s", job_config['archive_path']) + log.info("Job PID: %s", str(p.pid)) if teuth_config.results_server: log.info("Running with watchdog") -- 2.39.5