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

Control CLI Bug Fix (#1416)

* Patching control cli to user control-url instead of control

* Patching control cli to user control-url instead of control
This commit is contained in:
Taylor Jones 2017-09-22 16:41:34 -04:00 committed by Nate Berkopec
parent 176be58740
commit 459ab19636

View file

@ -245,7 +245,7 @@ module Puma
run_args += ["-S", @state] if @state
run_args += ["-q"] if @quiet
run_args += ["--pidfile", @pidfile] if @pidfile
run_args += ["--control", @control_url] if @control_url
run_args += ["--control-url", @control_url] if @control_url
run_args += ["--control-token", @control_auth_token] if @control_auth_token
run_args += ["-C", @config_file] if @config_file