From 8945f843be0e44b1b6120818f1ac89efd2b890d5 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 19 Nov 2024 08:10:17 -0800 Subject: [PATCH] fix --- app/celery/scheduled_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/celery/scheduled_tasks.py b/app/celery/scheduled_tasks.py index ba68dcb65..acf075e05 100644 --- a/app/celery/scheduled_tasks.py +++ b/app/celery/scheduled_tasks.py @@ -123,13 +123,13 @@ def check_job_status(): .scalars() .all() ) - # print(f"HERE IS JOBS {jobs_not_complete_after_30_minutes}") + print(f"HERE IS JOBS {jobs_not_complete_after_30_minutes}") # temporarily mark them as ERROR so that they don't get picked up by future check_job_status tasks # if they haven't been re-processed in time. job_ids = [] for job in jobs_not_complete_after_30_minutes: - # print(f"HERE IS A JOB {job}") + print(f"HERE IS A JOB {job}") # job.job_status = JobStatus.ERROR # print("CHANGED JOB STATUS TO ERROR") # dao_update_job(job)