From cc70f28f195335f4775f7b6aafe7d90210e8b700 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 29 Nov 2016 02:07:14 +0100 Subject: Adding rack timeout of 30sec, PuSH jobs moved to push queue so they can be processed separately --- app/workers/processing_worker.rb | 1 + app/workers/pubsubhubbub/confirmation_worker.rb | 2 ++ app/workers/pubsubhubbub/delivery_worker.rb | 2 ++ app/workers/pubsubhubbub/distribution_worker.rb | 2 ++ app/workers/salmon_worker.rb | 1 + 5 files changed, 8 insertions(+) (limited to 'app') diff --git a/app/workers/processing_worker.rb b/app/workers/processing_worker.rb index 34433a793..b31cd0aaf 100644 --- a/app/workers/processing_worker.rb +++ b/app/workers/processing_worker.rb @@ -2,6 +2,7 @@ class ProcessingWorker include Sidekiq::Worker + sidekiq_options backtrace: true def perform(account_id, body) diff --git a/app/workers/pubsubhubbub/confirmation_worker.rb b/app/workers/pubsubhubbub/confirmation_worker.rb index b852970a9..489bd8359 100644 --- a/app/workers/pubsubhubbub/confirmation_worker.rb +++ b/app/workers/pubsubhubbub/confirmation_worker.rb @@ -4,6 +4,8 @@ class Pubsubhubbub::ConfirmationWorker include Sidekiq::Worker include RoutingHelper + sidekiq_options queue: 'push' + def perform(subscription_id, mode, secret = nil, lease_seconds = nil) subscription = Subscription.find(subscription_id) challenge = SecureRandom.hex 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 = {} diff --git a/app/workers/pubsubhubbub/distribution_worker.rb b/app/workers/pubsubhubbub/distribution_worker.rb index 7917434f7..b0ddc71c1 100644 --- a/app/workers/pubsubhubbub/distribution_worker.rb +++ b/app/workers/pubsubhubbub/distribution_worker.rb @@ -3,6 +3,8 @@ class Pubsubhubbub::DistributionWorker include Sidekiq::Worker + sidekiq_options queue: 'push' + def perform(stream_entry_id) stream_entry = StreamEntry.find(stream_entry_id) account = stream_entry.account diff --git a/app/workers/salmon_worker.rb b/app/workers/salmon_worker.rb index 4a6ccf54d..0903ca487 100644 --- a/app/workers/salmon_worker.rb +++ b/app/workers/salmon_worker.rb @@ -2,6 +2,7 @@ class SalmonWorker include Sidekiq::Worker + sidekiq_options backtrace: true def perform(account_id, body) -- cgit