mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
ad40bf5e0c
* Speed up some rake tasks by moving execution to Sidekiq mastodon:media:remove_silenced mastodon:media:remove_remote mastodon:media:redownload_avatars mastodon:feeds:build * Fix code style issue
19 lines
352 B
Ruby
19 lines
352 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Maintenance::UncacheMediaWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
def perform(media_attachment_id)
|
|
media = MediaAttachment.find(media_attachment_id)
|
|
|
|
return unless media.file.exists?
|
|
|
|
media.file.destroy
|
|
media.save
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|