From 543c54c403c9ab89d559ab53dda25927998bdae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bournhonesque?= Date: Wed, 19 Jun 2024 11:30:19 +0200 Subject: [PATCH] fix: import dumps at 3PM instead of 10AM (#332) --- app/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scheduler.py b/app/scheduler.py index f896e879..99badf79 100644 --- a/app/scheduler.py +++ b/app/scheduler.py @@ -44,7 +44,7 @@ def run() -> None: scheduler.add_executor(ThreadPoolExecutor(20)) scheduler.add_jobstore(MemoryJobStore()) scheduler.add_job( - import_product_db_job, "cron", max_instances=1, hour=10, minute=0, jitter=60 + import_product_db_job, "cron", max_instances=1, hour=15, minute=0, jitter=60 ) scheduler.add_job( dump_db_job, "cron", max_instances=1, hour=23, minute=0, jitter=60