mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 18:47:51 +00:00
fix: Re-enable scheduled jobs (#10708)
During Captain, scheduled jobs were disabled. This PR would re-enable them
This commit is contained in:
@@ -8,27 +8,27 @@ internal_check_new_versions_job:
|
|||||||
class: 'Internal::CheckNewVersionsJob'
|
class: 'Internal::CheckNewVersionsJob'
|
||||||
queue: scheduled_jobs
|
queue: scheduled_jobs
|
||||||
# # executed At every 5th minute..
|
# # executed At every 5th minute..
|
||||||
# trigger_scheduled_items_job:
|
trigger_scheduled_items_job:
|
||||||
# cron: '*/5 * * * *'
|
cron: '*/5 * * * *'
|
||||||
# class: 'TriggerScheduledItemsJob'
|
class: 'TriggerScheduledItemsJob'
|
||||||
# queue: scheduled_jobs
|
queue: scheduled_jobs
|
||||||
|
|
||||||
# # executed At every minute..
|
# executed At every minute..
|
||||||
# trigger_imap_email_inboxes_job:
|
trigger_imap_email_inboxes_job:
|
||||||
# cron: '*/1 * * * *'
|
cron: '*/1 * * * *'
|
||||||
# class: 'Inboxes::FetchImapEmailInboxesJob'
|
class: 'Inboxes::FetchImapEmailInboxesJob'
|
||||||
# queue: scheduled_jobs
|
queue: scheduled_jobs
|
||||||
|
|
||||||
# # executed daily at 2230 UTC
|
# executed daily at 2230 UTC
|
||||||
# # which is our lowest traffic time
|
# which is our lowest traffic time
|
||||||
# remove_stale_contact_inboxes_job.rb:
|
remove_stale_contact_inboxes_job.rb:
|
||||||
# cron: '30 22 * * *'
|
cron: '30 22 * * *'
|
||||||
# class: 'Internal::RemoveStaleContactInboxesJob'
|
class: 'Internal::RemoveStaleContactInboxesJob'
|
||||||
# queue: scheduled_jobs
|
queue: scheduled_jobs
|
||||||
|
|
||||||
# # executed daily at 2230 UTC
|
# executed daily at 2230 UTC
|
||||||
# # which is our lowest traffic time
|
# which is our lowest traffic time
|
||||||
# remove_stale_redis_keys_job.rb:
|
remove_stale_redis_keys_job.rb:
|
||||||
# cron: '30 22 * * *'
|
cron: '30 22 * * *'
|
||||||
# class: 'Internal::RemoveStaleRedisKeysJob'
|
class: 'Internal::RemoveStaleRedisKeysJob'
|
||||||
# queue: scheduled_jobs
|
queue: scheduled_jobs
|
||||||
|
|||||||
Reference in New Issue
Block a user