fix: Puma server config syntax

This commit is contained in:
Luis Castro 2019-07-13 09:51:00 +02:00
parent d9895890a0
commit 34b4604c7a
No known key found for this signature in database
GPG key ID: 0A8F33D4C4E27639

View file

@ -13,9 +13,9 @@ preload_app! if ENV['RAILS_ENV'] != 'development'
rackup DefaultRackup
port ENV.fetch("PORT") { 5000 }
environment ENV.fetch('RAILS_ENV'{ 'development' }
environment ENV.fetch('RAILS_ENV'){ 'development' }
workers ENV['WEB_CONCURRENCY'].fetch { 1 }
workers Integer(ENV['WEB_CONCURRENCY'] || 1)