Commit 2adbc0b778985ee6b0a78b5acd845904520ccc64

Authored by Dmitriy Zaporozhets
2 parents cb9f1a4f be150fa9

Merge pull request #6142 from gdamjan/master

Check specifically for Unicorn in rack config.ru file
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
config.ru
1 1 # This file is used by Rack-based servers to start the application.
2 2  
3   -unless defined?(PhusionPassenger)
  3 +if defined?(Unicorn)
4 4 require 'unicorn'
5 5 # Unicorn self-process killer
6 6 require 'unicorn/worker_killer'
... ...