From b2dad7b9f77bd4823eb70ddef68d87b2a660915d Mon Sep 17 00:00:00 2001 From: Jeff Levin Date: Mon, 13 Apr 2020 11:50:45 -0800 Subject: [PATCH] remove comments, should be ready.. lets see if tests still fail --- lib/puma/configuration.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/puma/configuration.rb b/lib/puma/configuration.rb index bf74f451..30992efd 100644 --- a/lib/puma/configuration.rb +++ b/lib/puma/configuration.rb @@ -137,12 +137,10 @@ module Puma @file_dsl = DSL.new(@options.file_options, self) @default_dsl = DSL.new(@options.default_options, self) - # 1. workers_supported - #Puma::Plugin.new.workers_supported?) workers_supported = !(Puma.jruby? || Puma.windows?) - # 2. preload app if !@options[:prune_bundler] - default_options[:preload_app] =(@options[:workers] > 1) && workers_supported + default_options[:preload_app] = (@options[:workers] > 1) && workers_supported end if block