Browse Source

feat(puma): enable setting min puma threads in addition to max (#21048)

closed-social-glitch-2
Jim Myhrberg 1 year ago
committed by GitHub
parent
commit
85ec615393
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      config/puma.rb

+ 4
- 3
config/puma.rb View File

@ -1,7 +1,8 @@
persistent_timeout ENV.fetch('PERSISTENT_TIMEOUT') { 20 }.to_i
threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
threads threads_count, threads_count
max_threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
min_threads_count = ENV.fetch('MIN_THREADS') { max_threads_count }.to_i
threads min_threads_count, max_threads_count
if ENV['SOCKET']
bind "unix://#{ENV['SOCKET']}"
@ -10,7 +11,7 @@ else
end
environment ENV.fetch('RAILS_ENV') { 'development' }
workers ENV.fetch('WEB_CONCURRENCY') { 2 }
workers ENV.fetch('WEB_CONCURRENCY') { 2 }.to_i
preload_app!

Loading…
Cancel
Save