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

Merge branch 'master' into make_ci_work

This commit is contained in:
Richard Schneeman 2018-09-21 10:02:09 -05:00 committed by GitHub
commit a5cf4c27e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,7 +110,8 @@ module Puma::Rack
has_options = false
server.valid_options.each do |name, description|
next if name.to_s =~/^(Host|Port)[^a-zA-Z]/ # ignore handler's host and port options, we do our own.
next if name.to_s =~ /^(Host|Port)[^a-zA-Z]/ # ignore handler's host and port options, we do our own.
info << " -O %-21s %s" % [name, description]
has_options = true
end