Only PuSH-resubscribe to OStatus accounts (#4583)

lolsob-rspec
Eugen Rochko 2017-08-12 02:54:54 +02:00 committed by GitHub
parent 1263c0a60a
commit b33ac4a307
1 changed files with 1 additions and 2 deletions

View File

@ -8,13 +8,12 @@ class Scheduler::SubscriptionsScheduler
def perform
logger.info 'Queueing PuSH re-subscriptions'
Pubsubhubbub::SubscribeWorker.push_bulk(expiring_accounts.pluck(:id))
end
private
def expiring_accounts
Account.expiring(1.day.from_now).partitioned
Account.where(protocol: :ostatus).expiring(1.day.from_now).partitioned
end
end