Browse Source

Lower the threshold for testing

pull/1953/head
Kat 3 years ago
parent
commit
6970520a84
  1. 2
      app/jobs/email_missing_addresses_csv_job.rb

2
app/jobs/email_missing_addresses_csv_job.rb

@ -3,7 +3,7 @@ class EmailMissingAddressesCsvJob < ApplicationJob
BYTE_ORDER_MARK = "\uFEFF".freeze # Required to ensure Excel always reads CSV as UTF-8
EXPIRATION_TIME = 1.week.to_i
MISSING_ADDRESSES_THRESHOLD = 50
MISSING_ADDRESSES_THRESHOLD = 5
def perform(user_ids, organisation, log_type, skip_uprn_issue_organisations)
csv_service = Csv::MissingAddressesCsvService.new(organisation, skip_uprn_issue_organisations)

Loading…
Cancel
Save