discourse/app/jobs/scheduled/create_missing_avatars.rb
Sam fa6f22dd39 Move letter avatars out of upload system
FIX: S3 issues around system avatars
FIX: reduced backup file size
2014-05-30 14:45:55 +10:00

15 lines
374 B
Ruby

module Jobs
class CreateMissingAvatars < Jobs::Scheduled
every 1.hour
def execute(args)
# backfill in batches 5000 an hour
UserAvatar.where(last_gravatar_download_attempt: nil).includes(:user)
.order("users.last_posted_at desc")
.limit(5000).each do |u|
u.user.refresh_avatar
u.user.save
end
end
end
end