1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

1.8.7 hash

This commit is contained in:
schneems 2016-02-04 13:18:38 -06:00
parent 232bb6b17e
commit 8a19a22135
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ module Puma
exit 1
end
@launcher = Puma::Launcher.new(@cli_options, events: @events, argv: @argv)
@launcher = Puma::Launcher.new(@cli_options, :events => @events, :argv => @argv)
end
## BACKWARDS COMPAT FOR TESTS

View file

@ -29,7 +29,7 @@ module Rack
options[:app] = app
events = options.delete(:Silent) ? ::Puma::Events.strings : ::Puma::Events.stdio
launcher = ::Puma::Launcher.new(options, events: events)
launcher = ::Puma::Launcher.new(options, :events => events)
yield launcher if block_given?
begin