logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b21f7c28f6832817d5de616ab0c4c2d3c28d90b0
parent: ce9df2fa8295a3bdd0da583ba5d0d90251e1d448
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue,  4 Apr 2017 13:02:49 +0200

Move OStatus processing back into default queue

Diffstat:

Mapp/workers/processing_worker.rb2+-
Mapp/workers/salmon_worker.rb2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/workers/processing_worker.rb b/app/workers/processing_worker.rb @@ -3,7 +3,7 @@ class ProcessingWorker include Sidekiq::Worker - sidekiq_options queue: 'pull', backtrace: true + sidekiq_options backtrace: true def perform(account_id, body) ProcessFeedService.new.call(body, Account.find(account_id)) diff --git a/app/workers/salmon_worker.rb b/app/workers/salmon_worker.rb @@ -3,7 +3,7 @@ class SalmonWorker include Sidekiq::Worker - sidekiq_options queue: 'pull', backtrace: true + sidekiq_options backtrace: true def perform(account_id, body) ProcessInteractionService.new.call(body, Account.find(account_id))