Websites/lib/tasks/e621.rake

16 lines
415 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
namespace :e621 do
desc "Tasks related to e621"
task status_update: :environment do
E621StatusUpdater.run
end
task remove_timeouts: :environment do
E621Thumbnail.where(status: "timeout", created_at: ..5.minutes.ago).find_each do |entry|
2024-05-03 03:04:43 +00:00
puts "Removing timed out generation for post #{entry.post_id} (#{entry.stripped_md5}"
entry.destroy
end
end
end