From f31768b3154c61cfec7da8876ee0ee51496c508a Mon Sep 17 00:00:00 2001 From: Max Wofford Date: Thu, 4 Sep 2025 23:20:04 -0400 Subject: [PATCH] Re-enable physical mail job --- config/initializers/good_job.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/initializers/good_job.rb b/config/initializers/good_job.rb index 774f2c1..14513d4 100644 --- a/config/initializers/good_job.rb +++ b/config/initializers/good_job.rb @@ -127,10 +127,10 @@ Rails.application.configure do cron: "0 * * * *", # Run before AttemptToDeliverPhysicalMailJob class: "CheckStreakPhysicalMailJob" }, - # attempt_to_deliver_physical_mail: { - # cron: "5 * * * *", # Run after physical mail is created - # class: "AttemptToDeliverPhysicalMailJob" - # }, + attempt_to_deliver_physical_mail: { + cron: "5 * * * *", # Run after physical mail is created + class: "AttemptToDeliverPhysicalMailJob" + }, sync_neighborhood_from_airtable: { cron: "*/15 * * * *", class: "Neighborhood::SyncFromAirtableJob"