Revert "ensure puma gets fully required"

This was fixed in puma
This commit is contained in:
Thomas Walpole 2018-03-22 09:35:02 -07:00
parent 1fac1460b2
commit 452b12792c
1 changed files with 0 additions and 1 deletions

View File

@ -438,7 +438,6 @@ Capybara.register_server :webrick do |app, port, host, **options|
end
Capybara.register_server :puma do |app, port, host, **options|
require 'puma'
require 'rack/handler/puma'
Rack::Handler::Puma.run(app, { Host: host, Port: port, Threads: "0:4", workers: 0, daemon: false }.merge(options))
end