Prod build process

This commit is contained in:
Jason Jordan
2026-05-06 13:28:16 -04:00
parent 1d9025276d
commit e0101be567
223 changed files with 1861 additions and 7105 deletions
@@ -1,8 +1,9 @@
module AutomationService
class BatchEmployerUpdate
def initialize(pl_plan_keys = nil)
def initialize(pl_plan_keys = nil, full_sync = false)
@pl_plan_keys = pl_plan_keys
@full_sync = full_sync
end
def call
@@ -16,7 +17,7 @@ module AutomationService
employer_update_futures = employer_plan_headers.map do |employer_plan_header|
Concurrent::Future.execute do
ActiveRecord::Base.connection_pool.with_connection do
UpdateEmployerJob.perform_later(employer_plan_header: employer_plan_header)
UpdateEmployerJob.perform_later(employer_plan_header: employer_plan_header, full_sync: @full_sync)
end
end
end