logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 3d47154c206fcea8fc46e024ee11a40063a05023
parent: d0a217eb92aec7278685e17b04a1e109081785db
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Sat, 12 Aug 2017 02:54:54 +0200

Only PuSH-resubscribe to OStatus accounts (#4583)


Diffstat:

Mapp/workers/scheduler/subscriptions_scheduler.rb3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app/workers/scheduler/subscriptions_scheduler.rb b/app/workers/scheduler/subscriptions_scheduler.rb @@ -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