- Enable the rubocop Rails/FindEach - Replace the .all.each with .find_each This should let us avoid potential memory usage. Motivation from the speedshop newsletter by Nate Berkopec ref: https://www.rubyinrails.com/2017/11/16/use-find-each-instead-of-all-each-in-rails/ ref: https://linear.app/chatwoot/issue/CW-1480/chore-run-all-sidekiq-jobs-async
10 lines
289 B
Ruby
10 lines
289 B
Ruby
class Account::ConversationsResolutionSchedulerJob < ApplicationJob
|
|
queue_as :scheduled_jobs
|
|
|
|
def perform
|
|
Account.where.not(auto_resolve_duration: nil).all.find_each(batch_size: 100) do |account|
|
|
Conversations::ResolutionJob.perform_later(account: account)
|
|
end
|
|
end
|
|
end
|