From 05651d5997b8e1bcffc41fa427d903345dcfd694 Mon Sep 17 00:00:00 2001 From: jaayslaughter-cpu Date: Thu, 14 May 2026 20:29:36 -0700 Subject: [PATCH] =?UTF-8?q?PR=20#570:=20Fix=20misfire=5Fgrace=5Ftime=3D0?= =?UTF-8?q?=20=E2=86=92=20misfire=5Fgrace=5Ftime=3D1=20(APScheduler=20cras?= =?UTF-8?q?h)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestrator.py b/orchestrator.py index 016aa74..84dbfd0 100644 --- a/orchestrator.py +++ b/orchestrator.py @@ -722,7 +722,7 @@ def job_calibrate_model(): job_bug_checker, CronTrigger(hour=10, minute=0, timezone="America/Los_Angeles"), id="bug_checker", - misfire_grace_time=0, # never fire if restarted after 10 AM — prevents 8 PM surprises + misfire_grace_time=1, # skip if >1s late (effectively skip on restart) — prevents 8 PM surprises coalesce=True, # fire once max even if multiple misfires stacked )