2021-01-11 12:04:41 +00:00
|
|
|
# https://github.com/ondrejbartas/sidekiq-cron
|
|
|
|
# use https://crontab.guru/ to validate
|
2021-11-30 16:14:30 +00:00
|
|
|
# validations for this file exist in /spec/configs/schedule_spec.rb
|
2021-01-11 12:04:41 +00:00
|
|
|
|
|
|
|
# executed At 12:00 on every day-of-month.
|
|
|
|
internal_check_new_versions_job:
|
2021-11-19 06:22:27 +00:00
|
|
|
cron: '0 12 */1 * *'
|
|
|
|
class: 'Internal::CheckNewVersionsJob'
|
2021-01-11 12:04:41 +00:00
|
|
|
queue: scheduled_jobs
|
2021-07-14 06:54:09 +00:00
|
|
|
|
|
|
|
# executed At every 5th minute..
|
2021-07-19 13:40:58 +00:00
|
|
|
trigger_scheduled_items_job:
|
2021-11-19 06:22:27 +00:00
|
|
|
cron: '*/5 * * * *'
|
|
|
|
class: 'TriggerScheduledItemsJob'
|
|
|
|
queue: scheduled_jobs
|
|
|
|
|
2021-12-15 12:01:16 +00:00
|
|
|
# executed At every 5th minute..
|
2021-11-27 11:38:40 +00:00
|
|
|
trigger_imap_email_inboxes_job:
|
2022-07-08 11:13:24 +00:00
|
|
|
cron: '*/1 * * * *'
|
2021-11-19 06:22:27 +00:00
|
|
|
class: 'Inboxes::FetchImapEmailInboxesJob'
|
2021-07-14 17:21:27 +00:00
|
|
|
queue: scheduled_jobs
|