Browse Source

Only PuSH-resubscribe to OStatus accounts (#4583)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
3d47154c20
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      app/workers/scheduler/subscriptions_scheduler.rb

+ 1
- 2
app/workers/scheduler/subscriptions_scheduler.rb 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

Loading…
Cancel
Save