chore: enable stale contact removal job on chatwoot cloud (#11390)

- enable stale contact/contact inboxes removal job on chatwoot cloud
This commit is contained in:
Vishnu Narayanan
2025-05-02 13:36:30 +05:30
committed by GitHub
parent 55316ea0a0
commit f3a807c6f0
3 changed files with 20 additions and 6 deletions

View File

@@ -8,6 +8,8 @@ class Internal::ProcessStaleContactsJob < ApplicationJob
queue_as :scheduled_jobs
def perform
return unless ChatwootApp.chatwoot_cloud?
Account.find_in_batches(batch_size: 100) do |accounts|
accounts.each do |account|
Rails.logger.info "Enqueuing RemoveStaleContactsJob for account #{account.id}"