Skip to content

Commit

Permalink
fix: import dumps at 3PM instead of 10AM (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 authored Jun 19, 2024
1 parent 1b41308 commit 543c54c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 543c54c

Please sign in to comment.