1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #28499 from grosser/grosser/puma

unify puma types and remove blocks
This commit is contained in:
Rafael Mendonça França 2019-12-18 10:23:08 -03:00
commit 9e70042081
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948

View file

@ -4,16 +4,16 @@
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum; this matches the default thread size of Active Record.
#
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
threads_count = Integer(ENV.fetch("RAILS_MAX_THREADS", "5"))
threads threads_count, threads_count
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
#
port ENV.fetch("PORT") { 3000 }
port Integer(ENV.fetch("PORT", "3000"))
# Specifies the `environment` that Puma will run in.
#
environment ENV.fetch("RAILS_ENV") { "development" }
environment ENV.fetch("RAILS_ENV", "development")
# Specifies the number of `workers` to boot in clustered mode.
# Workers are forked web server processes. If using threads and workers together
@ -21,7 +21,7 @@ environment ENV.fetch("RAILS_ENV") { "development" }
# Workers do not work on JRuby or Windows (both of which do not support
# processes).
#
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
# workers Integer(ENV.fetch("WEB_CONCURRENCY", "2"))
# Use the `preload_app!` method when specifying a `workers` number.
# This directive tells Puma to first boot the application and load code