From 1e6e385388b2c727ed228212241dc9f09d72c25f Mon Sep 17 00:00:00 2001 From: Jonathan Hooper Date: Thu, 30 May 2024 10:51:45 -0400 Subject: [PATCH] Add an unused service provider issuer argument to the resolution proofing job We are planning on passing the SP into the background job and using it for work in the job such as computing UUID prefixes and SP costs. First we need all of the workers to know about the new argument so we do not see `ArgumentError`s when the argument is passed to the job. This commit adds the argument [skip changelog] --- app/jobs/resolution_proofing_job.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/jobs/resolution_proofing_job.rb b/app/jobs/resolution_proofing_job.rb index 868cc78ae71..9a7372d61df 100644 --- a/app/jobs/resolution_proofing_job.rb +++ b/app/jobs/resolution_proofing_job.rb @@ -23,6 +23,7 @@ def perform( should_proof_state_id:, ipp_enrollment_in_progress:, user_id: nil, + service_provider_issuer: nil, # rubocop:disable Lint/UnusedMethodArgument threatmetrix_session_id: nil, request_ip: nil, instant_verify_ab_test_discriminator: nil