Browse Source

Move OStatus processing back into default queue

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
b21f7c28f6
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/workers/processing_worker.rb
  2. +1
    -1
      app/workers/salmon_worker.rb

+ 1
- 1
app/workers/processing_worker.rb View File

@ -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))

+ 1
- 1
app/workers/salmon_worker.rb View File

@ -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))

Loading…
Cancel
Save