aws-s3
aws-s3 copied to clipboard
HTTP SSL Options Error
AWS::S3::Connection.create_connection has the following bit of logic...
http.use_ssl = !options[:use_ssl].nil? || options[:port] == 443
:use_ssl => false thus turns SSL on - which is incorrect/unexpected behaviour
Good catch. Silly mistake. Puzzled that that didn't occur to me.
I suggest changing the line to: http.use_ssl = options[:use_ssl] || options[:port] == 443
(Sorry, tried attaching a patch but github won't format patches properly)