Remove deprecated alias HTTP::Server#bind_ssl (#495)
This commit is contained in:
parent
cd5f83f013
commit
b389022b35
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ module Kemal
|
||||||
server.bind_tcp(config.host_binding, config.port)
|
server.bind_tcp(config.host_binding, config.port)
|
||||||
{% else %}
|
{% else %}
|
||||||
if ssl = config.ssl
|
if ssl = config.ssl
|
||||||
server.bind_ssl(config.host_binding, config.port, ssl)
|
server.bind_tls(config.host_binding, config.port, ssl)
|
||||||
else
|
else
|
||||||
server.bind_tcp(config.host_binding, config.port)
|
server.bind_tcp(config.host_binding, config.port)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue