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

Silence puma startup messages in system test

Fixes #28109
This commit is contained in:
yuuji.yaginuma 2017-03-04 18:26:28 +09:00
parent de17d9e23d
commit 5752ff8dec

View file

@ -11,7 +11,7 @@ module ActionDispatch
private
def register
Capybara.register_server :rails_puma do |app, port, host|
Rack::Handler::Puma.run(app, Port: port, Threads: "0:1")
Rack::Handler::Puma.run(app, Port: port, Threads: "0:1", Silent: true)
end
end