From 46f3ad0bdd79b7e6614eb7bd5e1ea168a9ce351d Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Thu, 29 Nov 2018 00:38:21 +0500 Subject: [PATCH] Fix code style --- config/puma.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/puma.rb b/config/puma.rb index b48370a..eaf051c 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -12,7 +12,7 @@ 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 ENV.fetch('PORT') { 3000 } # Specifies the `environment` that Puma will run in. # @@ -24,7 +24,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 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