Update sidekiq description
All checks were successful
Build and Publish Docker Container / build (push) Successful in 5m6s

This commit is contained in:
Joshua Coles 2023-10-06 22:14:56 +01:00
parent a4fd2b853a
commit e6dcd8e6ec

View File

@ -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