diff --git a/config/sidekiq.yml b/config/sidekiq.yml index f310a96..26be453 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -12,6 +12,16 @@ production: :scheduler: :schedule: :lecture_checkin_job: - cron: '15 * * * 1,2,3,4,5' + # Lectures start at 15 minutes past the hour so run the checkin script just before + cron: '14 * * * 1,2,3,4,5' class: 'LectureCheckinJob' queue: default + :scrape_panopto_job: + cron: '* * * * 1,2,3,4,5' + class: 'ScrapePanoptoJob' + queue: default + :scrape_toggl_job: + # Lectures end at 5 past the hour so scrape toggl a little after when I will have ended the time entry + cron: '10 * * * 1,2,3,4,5' + class: 'ScrapeTogglJob' + queue: default