From 694743170c75263bcecc1cd81314a35741002d23 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Wed, 27 May 2015 22:56:35 -0400 Subject: Disable Unicorn::WorkerKiller in non-production environments --- config.ru | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/config.ru b/config.ru index e90863a5c21..a2525c81361 100644 --- a/config.ru +++ b/config.ru @@ -2,11 +2,14 @@ if defined?(Unicorn) require 'unicorn' - # Unicorn self-process killer - require 'unicorn/worker_killer' - # Max memory size (RSS) per worker - use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20)) + if ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging' + # Unicorn self-process killer + require 'unicorn/worker_killer' + + # Max memory size (RSS) per worker + use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20)) + end end require ::File.expand_path('../config/environment', __FILE__) -- cgit v1.2.3