Merge feature/cw-7513 into feature/cw-7513-specs

This commit is contained in:
Tanmay Deep Sharma
2026-07-20 12:26:18 +05:30
2 changed files with 6 additions and 3 deletions
-3
View File
@@ -17,9 +17,6 @@ class TriggerScheduledItemsJob < ApplicationJob
# Job to auto-resolve conversations
Account::ConversationsResolutionSchedulerJob.perform_later
# Job to fire due delayed automation rules
AutomationRules::TriggerPendingExecutionsJob.perform_later
# Job to sync whatsapp templates
Channels::Whatsapp::TemplatesSyncSchedulerJob.perform_later
end
+6
View File
@@ -26,6 +26,12 @@ trigger_imap_email_inboxes_job:
class: 'Inboxes::FetchImapEmailInboxesJob'
queue: scheduled_jobs
# executed every minute to fire due delayed automation rules
trigger_pending_automation_executions_job:
cron: '*/1 * * * *'
class: 'AutomationRules::TriggerPendingExecutionsJob'
queue: scheduled_jobs
# executed daily at 2230 UTC
# which is our lowest traffic time
remove_stale_contact_inboxes_job.rb: