Refactoring: Make sure Puma environment matches RAILS_ENV ENV.
This commit is contained in:
parent
b5a44ee0d0
commit
7ffa03731e
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,8 @@ threads_count_min = Integer(ENV['MIN_THREADS'] || 5)
|
|||
threads_count_max = Integer(ENV['MAX_THREADS'] || 30)
|
||||
threads threads_count_min, threads_count_max
|
||||
|
||||
environment ENV.fetch('RAILS_ENV', 'development')
|
||||
|
||||
preload_app!
|
||||
|
||||
on_worker_boot do
|
||||
|
|
Loading…
Reference in a new issue