From af209851e6afe923ecc7e95a04324cba8ca4f753 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 24 Apr 2014 10:46:11 -0500 Subject: [PATCH] Don't push last_in_suite jobs to paddles Signed-off-by: Zack Cerza --- teuthology/schedule.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/teuthology/schedule.py b/teuthology/schedule.py index df20f7f6907ef..f79021b309ca1 100644 --- a/teuthology/schedule.py +++ b/teuthology/schedule.py @@ -69,6 +69,7 @@ def main(ctx): print 'Job scheduled with name {name} and ID {jid}'.format( name=ctx.name, jid=jid) job_config['job_id'] = str(jid) - # Let paddles know the job is queued - report.try_push_job_info(job_config, dict(status='queued')) + # Let paddles know the job is queued, but only for 'real' jobs + if not job_config.get('last_in_suite', False): + report.try_push_job_info(job_config, dict(status='queued')) num -= 1 -- 2.39.5