mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Update suspended_user_cleanup_scheduler.rb
This commit is contained in:
parent
7caf605384
commit
da416534eb
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ class Scheduler::SuspendedUserCleanupScheduler
|
|||
# Each processed deletion request may enqueue an enormous
|
||||
# amount of jobs in the `pull` queue, so only enqueue when
|
||||
# the queue is empty or close to being so.
|
||||
MAX_PULL_SIZE = 50
|
||||
MAX_QUEUE_SIZE = 50
|
||||
|
||||
# Since account deletion is very expensive, we want to avoid
|
||||
# overloading the server by queuing too much at once.
|
||||
|
@ -19,7 +19,7 @@ class Scheduler::SuspendedUserCleanupScheduler
|
|||
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
|
||||
|
||||
def perform
|
||||
return if Sidekiq::Queue.new('low_delivery').size > MAX_PULL_SIZE
|
||||
return if Sidekiq::Queue.new('low_delivery').size > MAX_QUEUE_SIZE
|
||||
|
||||
process_deletion_requests!
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue