From 6a027848ec70259d430394191745fc551c840eae Mon Sep 17 00:00:00 2001 From: Matthew Thornton Date: Tue, 11 Jul 2023 22:46:53 -0400 Subject: [PATCH] Revert accidental commit to master This reverts commit 92d56fe90fb4b55e1707db810340595b824e2abf. --- app/jobs/ama_notification_efolder_sync_job.rb | 2 +- app/jobs/legacy_notification_efolder_sync_job.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/jobs/ama_notification_efolder_sync_job.rb b/app/jobs/ama_notification_efolder_sync_job.rb index 27ec96b7da7..99813809bc2 100644 --- a/app/jobs/ama_notification_efolder_sync_job.rb +++ b/app/jobs/ama_notification_efolder_sync_job.rb @@ -17,7 +17,7 @@ def perform all_active_ama_appeals = appeals_recently_outcoded + appeals_never_synced + ready_for_resync - sync_notification_reports(all_active_ama_appeals.uniq.first(BATCH_LIMIT.to_i)) + sync_notification_reports(all_active_ama_appeals.first(BATCH_LIMIT.to_i)) end private diff --git a/app/jobs/legacy_notification_efolder_sync_job.rb b/app/jobs/legacy_notification_efolder_sync_job.rb index a833af6c477..d37847a8dbc 100644 --- a/app/jobs/legacy_notification_efolder_sync_job.rb +++ b/app/jobs/legacy_notification_efolder_sync_job.rb @@ -17,7 +17,7 @@ def perform all_active_legacy_appeals = appeals_recently_outcoded + appeals_never_synced + ready_for_resync - sync_notification_reports(all_active_legacy_appeals.uniq.first(BATCH_LIMIT.to_i)) + sync_notification_reports(all_active_legacy_appeals.first(BATCH_LIMIT.to_i)) end private