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

argv is an array

This commit is contained in:
schneems 2016-02-03 17:22:40 -06:00
parent 6de8beea1f
commit 1d096be25c

View file

@ -27,7 +27,7 @@ module Puma
def initialize(input_options, launcher_args = {})
@runner = nil
@events = launcher_args[:events] or raise "must provide :events key"
@argv = launcher_args[:argv] || "puma"
@argv = launcher_args[:argv] || []
@original_argv = @argv.dup
@config = nil