From 138d21aea84c376fea0100580f11cbf2b500914d Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 13 Feb 2017 20:31:45 +0100 Subject: [PATCH] Update service timeout setting from 15s to 90s --- config/initializers/timeout.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/timeout.rb b/config/initializers/timeout.rb index 643780884..06a29492e 100644 --- a/config/initializers/timeout.rb +++ b/config/initializers/timeout.rb @@ -1,4 +1,4 @@ if Rails.env.production? - Rack::Timeout.service_timeout = 15 + Rack::Timeout.service_timeout = 90 Rack::Timeout::Logger.disable end