From 7b7ff6e8cea6c0811310efb5407eeffe49044992 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 4 Oct 2011 12:32:58 -0700 Subject: [PATCH] teuthology-worker: clean up last_in_suite jobs There's no reason not to delete them once they start. --- teuthology/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index 260be8e2d5b0b..86c3681e24024 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -99,7 +99,7 @@ describe. One job is run at a time. archive_path = os.path.join(ctx.archive_dir, safe_archive, str(job.jid)) log.info('Running job %d', job.jid) run_job(job_config, archive_path) - job.delete() + job.delete() def run_job(job_config, archive_path): arg = [ -- 2.39.5