From 8b6d642bf29409a1ffaf6f9997429fe3a4787438 Mon Sep 17 00:00:00 2001 From: Justin Su Date: Sun, 12 May 2024 03:57:33 -0400 Subject: [PATCH 1/2] Fix #863 --- src/apscheduler/_schedulers/async_.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apscheduler/_schedulers/async_.py b/src/apscheduler/_schedulers/async_.py index 00e3772a1..a61beca3a 100644 --- a/src/apscheduler/_schedulers/async_.py +++ b/src/apscheduler/_schedulers/async_.py @@ -472,6 +472,7 @@ async def add_schedule( task = await self.configure_task( func_or_task_id, job_executor=job_executor, + misfire_grace_time=misfire_grace_time, max_running_jobs=max_running_jobs, ) schedule = Schedule( From 5dc805c6f5c89ce064afe639a761a90f69266c52 Mon Sep 17 00:00:00 2001 From: Justin Su Date: Sun, 12 May 2024 04:13:04 -0400 Subject: [PATCH 2/2] Update versionhistory.rst --- docs/versionhistory.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/versionhistory.rst b/docs/versionhistory.rst index d579d41c7..b2ef521b6 100644 --- a/docs/versionhistory.rst +++ b/docs/versionhistory.rst @@ -30,6 +30,7 @@ APScheduler, see the :doc:`migration section `. (PR by MohammadAmin Vahedinia) - Fixed the shutdown procedure of the Redis event broker - Fixed ``SQLAlchemyDataStore`` not respecting custom schema name when creating enums +- Fixed missing ``misfire_grace_time`` argument in ``AsyncScheduler`` (PR by Justin Su) **4.0.0a4**