0
0
Fork 0

Specs for cleanup workers (#3235)

* Add spec files for feed and media cleanup workers

* Add coverage for feed and media cleanup schedulers

* Clean up feed and media cleanup workers
This commit is contained in:
Matt Jankowski 2017-05-22 13:36:21 -04:00 committed by Eugen Rochko
parent 4a4733b397
commit ec34ec63b1
6 changed files with 39 additions and 2 deletions

View file

@ -17,7 +17,7 @@ class Scheduler::FeedCleanupScheduler
private
def inactive_users
User.confirmed.where('current_sign_in_at < ?', 14.days.ago)
User.confirmed.inactive
end
def redis

View file

@ -12,6 +12,6 @@ class Scheduler::MediaCleanupScheduler
private
def unattached_media
MediaAttachment.reorder(nil).where(status_id: nil).where('created_at < ?', 1.day.ago)
MediaAttachment.reorder(nil).unattached.where('created_at < ?', 1.day.ago)
end
end