From 7b6b3888766c7a1cb0c0abbdc2cfed80a3df31fd Mon Sep 17 00:00:00 2001 From: Jintao Date: Sat, 28 Sep 2024 16:58:30 +0800 Subject: [PATCH] another if condition --- arc/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arc/scheduler.py b/arc/scheduler.py index c5db5dae09..db7ed29c6d 100644 --- a/arc/scheduler.py +++ b/arc/scheduler.py @@ -548,7 +548,7 @@ def schedule_jobs(self): continue job_list = self.running_jobs[label] for job_name in job_list: - if 'conformer' in job_name: + if ('conformer' in job_name or 'sp' in job_name) and not conformer_jobs_done: i = get_i_from_job_name(job_name) job = self.job_dict[label]['conformers'][i] if not (job.job_id in self.server_job_ids and job.job_id not in self.completed_incore_jobs):