Skip to content
Snippets Groups Projects
Commit 69474317 authored by Robert Speicher's avatar Robert Speicher
Browse files

Disable Unicorn::WorkerKiller in non-production environments

parent 13f2ab3e
Branches
Tags
1 merge request!729Disable Unicorn::WorkerKiller in non-production environments
Pipeline #
Loading
@@ -2,12 +2,15 @@
Loading
@@ -2,12 +2,15 @@
   
if defined?(Unicorn) if defined?(Unicorn)
require 'unicorn' require 'unicorn'
if ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging'
# Unicorn self-process killer # Unicorn self-process killer
require 'unicorn/worker_killer' require 'unicorn/worker_killer'
   
# Max memory size (RSS) per worker # Max memory size (RSS) per worker
use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20)) use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20))
end end
end
   
require ::File.expand_path('../config/environment', __FILE__) require ::File.expand_path('../config/environment', __FILE__)
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment