em-http-request icon indicating copy to clipboard operation
em-http-request copied to clipboard

sni-hostname no longer settable

Open steve-misky opened this issue 7 years ago • 0 comments

broken with v1.1.4

HttpConnectionOptions Class http_connection_options:23

Change in 1.1.4 forces the sni_hostname, EVEN if already provided

@tls[:sni_hostname] = uri.host

Simple FIX (to retain the sni_hostname IF already provided

@tls[:sni_hostname] ||= uri.host

steve-misky avatar Sep 25 '17 17:09 steve-misky