Rely on puma default environment setting (#36760)

This commit is contained in:
Matt Jankowski 2025-11-07 05:06:22 -05:00 committed by GitHub
parent 6833878f95
commit c7dc5767d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,8 +12,7 @@ else
bind "tcp://#{ENV.fetch('BIND', '127.0.0.1')}:#{ENV.fetch('PORT', 3000)}"
end
environment ENV.fetch('RAILS_ENV') { 'development' }
workers ENV.fetch('WEB_CONCURRENCY') { 2 }.to_i
workers ENV.fetch('WEB_CONCURRENCY') { 2 }.to_i
preload_app!