Skip to content

Commit

Permalink
Revert accidental commit to master
Browse files Browse the repository at this point in the history
This reverts commit 92d56fe.
  • Loading branch information
ThorntonMatthew committed Jul 12, 2023
1 parent 92d56fe commit 6a02784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/jobs/ama_notification_efolder_sync_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/jobs/legacy_notification_efolder_sync_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6a02784

Please sign in to comment.