summaryrefslogtreecommitdiffstats
path: root/app/lib/vacuum/preview_cards_vacuum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/vacuum/preview_cards_vacuum.rb')
-rw-r--r--app/lib/vacuum/preview_cards_vacuum.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/lib/vacuum/preview_cards_vacuum.rb b/app/lib/vacuum/preview_cards_vacuum.rb
index 84ef100ed94..14fdeda1ca9 100644
--- a/app/lib/vacuum/preview_cards_vacuum.rb
+++ b/app/lib/vacuum/preview_cards_vacuum.rb
@@ -9,7 +9,6 @@ class Vacuum::PreviewCardsVacuum
def perform
vacuum_cached_images! if retention_period?
- vacuum_orphaned_records!
end
private
@@ -21,18 +20,10 @@ class Vacuum::PreviewCardsVacuum
end
end
- def vacuum_orphaned_records!
- orphaned_preview_cards.in_batches.destroy_all
- end
-
def preview_cards_past_retention_period
PreviewCard.cached.where(PreviewCard.arel_table[:updated_at].lt(@retention_period.ago))
end
- def orphaned_preview_cards
- PreviewCard.where('NOT EXISTS (SELECT 1 FROM preview_cards_statuses WHERE preview_cards_statuses.preview_card_id = preview_cards.id)').where(PreviewCard.arel_table[:created_at].lt(TTL.ago))
- end
-
def retention_period?
@retention_period.present?
end