Skip to content
Snippets Groups Projects
Commit cc70f28f authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Adding rack timeout of 30sec, PuSH jobs moved to push queue so they

can be processed separately
parent c0555f2d
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ gem 'simple_form'
gem 'will_paginate'
gem 'rack-attack'
gem 'rack-cors', require: 'rack/cors'
gem 'rack-timeout-puma'
gem 'sidekiq'
gem 'ledermann-rails-settings'
gem 'pg_search'
......
......@@ -257,6 +257,9 @@ GEM
rack
rack-test (0.6.3)
rack (>= 1.0)
rack-timeout (0.4.2)
rack-timeout-puma (0.0.1)
rack-timeout (~> 0.2, >= 0.2.0)
rails-dom-testing (2.0.1)
activesupport (>= 4.2.0, < 6.0)
nokogiri (~> 1.6.0)
......@@ -438,6 +441,7 @@ DEPENDENCIES
rabl
rack-attack
rack-cors
rack-timeout-puma
rails!
rails_12factor
rails_autolink
......
......@@ -2,6 +2,7 @@
class ProcessingWorker
include Sidekiq::Worker
sidekiq_options backtrace: true
def perform(account_id, body)
......
......@@ -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
......
......@@ -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 = {}
......
......@@ -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
......
......@@ -2,6 +2,7 @@
class SalmonWorker
include Sidekiq::Worker
sidekiq_options backtrace: true
def perform(account_id, body)
......
......@@ -30,7 +30,7 @@ Rails.application.configure do
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
config.force_ssl = false
......
Rack::Timeout.timeout = 30
\ No newline at end of file
......@@ -23,7 +23,7 @@ services:
restart: always
build: .
env_file: .env.production
command: bundle exec sidekiq -q default -q mailers
command: bundle exec sidekiq -q default -q mailers -q push
depends_on:
- db
- redis
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment