Skip to content

Commit

Permalink
Merge pull request #28230 from y-yagi/HOST_to_be_in_uppercase
Browse files Browse the repository at this point in the history
`HOST` must be all capital letters
  • Loading branch information
rafaelfranca committed Feb 28, 2017
2 parents 77d3550 + 0434700 commit 89d5d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/lib/rails/commands/server/server_command.rb
Expand Up @@ -177,7 +177,7 @@ def user_supplied_options
user_supplied_options << name
end
end
user_supplied_options << :Host if ENV["Host"]
user_supplied_options << :Host if ENV["HOST"]
user_supplied_options << :Port if ENV["PORT"]
user_supplied_options.uniq
end
Expand Down

0 comments on commit 89d5d97

Please sign in to comment.