Replies: 1 comment 2 replies
-
If you supply an This decorator was a misfeature that has been removed in the 4.0 series (currently in alpha). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd like to use apscheduler with FastAPI, and defining jobs with
scheduled_job
decorator.The schedule instance is created before app starts and shutdown after app ends. And I'm using postgres to store jobs.
If I instantiate apscheduler like this:
Every time the app restarts, will those jobs get added to the db? Or if jobs already exist, skip adding?
Beta Was this translation helpful? Give feedback.
All reactions