about summary refs log tree commit diff
path: root/app/workers/pubsubhubbub/delivery_worker.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-29 02:07:14 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-29 02:07:14 +0100
commitcc70f28f195335f4775f7b6aafe7d90210e8b700 (patch)
treee933cbccbf6d3ec3b6627bba41f4b395c38d2f27 /app/workers/pubsubhubbub/delivery_worker.rb
parentc0555f2db6b04edfbf829696648ec3998cef9365 (diff)
Adding rack timeout of 30sec, PuSH jobs moved to push queue so they
can be processed separately
Diffstat (limited to 'app/workers/pubsubhubbub/delivery_worker.rb')
-rw-r--r--app/workers/pubsubhubbub/delivery_worker.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/workers/pubsubhubbub/delivery_worker.rb b/app/workers/pubsubhubbub/delivery_worker.rb
index 4d55798e8..6d526c2b1 100644
--- a/app/workers/pubsubhubbub/delivery_worker.rb
+++ b/app/workers/pubsubhubbub/delivery_worker.rb
@@ -4,6 +4,8 @@ class Pubsubhubbub::DeliveryWorker
   include Sidekiq::Worker
   include RoutingHelper
 
+  sidekiq_options queue: 'push'
+
   def perform(subscription_id, payload)
     subscription = Subscription.find(subscription_id)
     headers      = {}