Disable retries on all scheduled tasks (#8413)

th-downstream
Eugen Rochko 6 years ago committed by GitHub
parent db91d0dcc7
commit fddae332aa

@ -3,7 +3,7 @@
class Scheduler::BackupCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
old_backups.reorder(nil).find_each(&:destroy!)

@ -3,7 +3,7 @@
class Scheduler::DoorkeeperCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
Doorkeeper::AccessToken.where('revoked_at IS NOT NULL').where('revoked_at < NOW()').delete_all

@ -3,7 +3,7 @@
class Scheduler::EmailScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
eligible_users.reorder(nil).find_each do |user|

@ -3,7 +3,7 @@
class Scheduler::FeedCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
clean_home_feeds!

@ -5,7 +5,7 @@ class Scheduler::IpCleanupScheduler
RETENTION_PERIOD = 1.year
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
time_ago = RETENTION_PERIOD.ago

@ -3,7 +3,7 @@
class Scheduler::MediaCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
unattached_media.find_each(&:destroy)

@ -3,7 +3,7 @@
class Scheduler::SubscriptionsCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
Subscription.expired.in_batches.delete_all

@ -3,7 +3,7 @@
class Scheduler::SubscriptionsScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
Pubsubhubbub::SubscribeWorker.push_bulk(expiring_accounts.pluck(:id))

@ -3,7 +3,7 @@
class Scheduler::UserCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed
sidekiq_options unique: :until_executed, retry: 0
def perform
User.where('confirmed_at is NULL AND confirmation_sent_at <= ?', 2.days.ago).reorder(nil).find_in_batches do |batch|

Loading…
Cancel
Save