Skip to content
Snippets Groups Projects
Commit 84093385 authored by James Newton's avatar James Newton Committed by Dmitriy Zaporozhets
Browse files

don't use unicorn worker killer if PhusionPassenger is defined

parent 221af222
No related branches found
No related tags found
1 merge request!6886DELETE THIS MERGE REQUEST
# This file is used by Rack-based servers to start the application.
 
# Unicorn self-process killer
require 'unicorn/worker_killer'
unless defined?(PhusionPassenger)
# Unicorn self-process killer
require 'unicorn/worker_killer'
 
# # Max memory size (RSS) per worker
use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20))
# Max memory size (RSS) per worker
use Unicorn::WorkerKiller::Oom, (200 * (1 << 20)), (250 * (1 << 20))
end
 
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.
Finish editing this message first!
Please register or to comment