From 672d4487ade2172bb731378fb0c5a1c88b77dd00 Mon Sep 17 00:00:00 2001 From: Lauren George Date: Fri, 20 Dec 2024 18:00:59 -0500 Subject: [PATCH 1/2] LG-15187: Update Socure Idv A/B test logic, pt.1 Adds a new parameter to ResolutionProofingJob prior to implementation, so that the new signature method can be used once all job queues are running the same code. [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 cf5b3b9cbe3..dd17ee46fa4 100644 --- a/app/jobs/resolution_proofing_job.rb +++ b/app/jobs/resolution_proofing_job.rb @@ -25,6 +25,7 @@ def perform( service_provider_issuer: nil, threatmetrix_session_id: nil, request_ip: nil, + proofing_components: nil, # DEPRECATED ARGUMENTS should_proof_state_id: false # rubocop:disable Lint/UnusedMethodArgument ) From 4fdc5fa8142bef872cf8067b4da87de6fc105a06 Mon Sep 17 00:00:00 2001 From: Lauren George Date: Fri, 20 Dec 2024 18:22:56 -0500 Subject: [PATCH 2/2] Ignore missing argument --- app/jobs/resolution_proofing_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/jobs/resolution_proofing_job.rb b/app/jobs/resolution_proofing_job.rb index dd17ee46fa4..66c9d635feb 100644 --- a/app/jobs/resolution_proofing_job.rb +++ b/app/jobs/resolution_proofing_job.rb @@ -25,7 +25,7 @@ def perform( service_provider_issuer: nil, threatmetrix_session_id: nil, request_ip: nil, - proofing_components: nil, + proofing_components: nil, # rubocop:disable Lint/UnusedMethodArgument # DEPRECATED ARGUMENTS should_proof_state_id: false # rubocop:disable Lint/UnusedMethodArgument )