diff --git a/app/jobs/identity/reap_aged_out_users_job.rb b/app/jobs/identity/reap_aged_out_users_job.rb index f58d0c5..a9a5be3 100644 --- a/app/jobs/identity/reap_aged_out_users_job.rb +++ b/app/jobs/identity/reap_aged_out_users_job.rb @@ -2,7 +2,7 @@ class Identity::ReapAgedOutUsersJob < ApplicationJob queue_as :default def perform - aged_out = Identity.where(ysws_eligible: true, hq_override: [false, nil]) + aged_out = Identity.where(ysws_eligible: true, hq_override: [ false, nil ]) .where("birthday <= ?", 19.years.ago.to_date) reaped_count = 0 @@ -15,4 +15,4 @@ class Identity::ReapAgedOutUsersJob < ApplicationJob Rails.logger.info "ReapAgedOutUsersJob: marked #{reaped_count} #{"user".pluralize reaped_count} as alumni and ineligible" end -end \ No newline at end of file +end