From e6dcd8e6ec33cfa71a43efaac2aaa726733ccbb2 Mon Sep 17 00:00:00 2001 From: Joshua Coles Date: Fri, 6 Oct 2023 22:14:56 +0100 Subject: [PATCH] Update sidekiq description --- config/sidekiq.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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