feat(perf): sla-9 improve perf of TriggerSlasForAccountsJob (#8953)

* feat: improve perf of TriggerSlasForAccountsJob
This commit is contained in:
Vishnu Narayanan
2024-02-20 21:54:37 +05:30
committed by GitHub
parent e6cf8c39b7
commit f92cea144c
2 changed files with 14 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ class Sla::TriggerSlasForAccountsJob < ApplicationJob
queue_as :scheduled_jobs
def perform
Account.find_each do |account|
Account.joins(:sla_policies).distinct.find_each do |account|
Rails.logger.info "Enqueuing ProcessAccountAppliedSlasJob for account #{account.id}"
Sla::ProcessAccountAppliedSlasJob.perform_later(account)
end