diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-29 02:07:14 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-29 02:07:14 +0100 |
commit | cc70f28f195335f4775f7b6aafe7d90210e8b700 (patch) | |
tree | e933cbccbf6d3ec3b6627bba41f4b395c38d2f27 /app | |
parent | c0555f2db6b04edfbf829696648ec3998cef9365 (diff) |
Adding rack timeout of 30sec, PuSH jobs moved to push queue so they
can be processed separately
Diffstat (limited to 'app')
-rw-r--r-- | app/workers/processing_worker.rb | 1 | ||||
-rw-r--r-- | app/workers/pubsubhubbub/confirmation_worker.rb | 2 | ||||
-rw-r--r-- | app/workers/pubsubhubbub/delivery_worker.rb | 2 | ||||
-rw-r--r-- | app/workers/pubsubhubbub/distribution_worker.rb | 2 | ||||
-rw-r--r-- | app/workers/salmon_worker.rb | 1 |
5 files changed, 8 insertions, 0 deletions
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) |