about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-04 13:02:49 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-04 13:02:49 +0200
commitb21f7c28f6832817d5de616ab0c4c2d3c28d90b0 (patch)
tree8abbb3f7840586c509461028308b6db0e74e0f4c /app/workers
parentce9df2fa8295a3bdd0da583ba5d0d90251e1d448 (diff)
Move OStatus processing back into default queue
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/processing_worker.rb2
-rw-r--r--app/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
index 4a467d924..5df404bcc 100644
--- 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
index 2888b574b..fc95ce47f 100644
--- 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))