@vildevev During my refactor, I hit the scheduler code. Upon re-reviewing Node Schedule's, the cron-like NPM package we have been using, documentation, here's what I discovered:
Note that Node Schedule is designed for in-process scheduling, i.e. scheduled jobs will only fire as long as your script is running, and the schedule will disappear when execution completes. If you need to schedule jobs that will persist even when your script isn't running, consider using actual cron.
This means that we will actually need to use actual cron.
@vildevev During my refactor, I hit the scheduler code. Upon re-reviewing Node Schedule's, the cron-like NPM package we have been using, documentation, here's what I discovered:
This means that we will actually need to use actual cron.