Skip to content

Commit

Permalink
Control CLI Bug Fix (#1416)
Browse files Browse the repository at this point in the history
* Patching control cli to user control-url instead of control

* Patching control cli to user control-url instead of control
  • Loading branch information
hiimtaylorjones authored and nateberkopec committed Sep 22, 2017
1 parent 176be58 commit 459ab19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puma/control_cli.rb
Expand Up @@ -245,7 +245,7 @@ def start
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

Expand Down

1 comment on commit 459ab19

@jlduran
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

invalid option: --control-url

Please sign in to comment.