1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[aws|storage] Default to false for persistent connections.

Using false provides for a more stable solution by default.
This commit is contained in:
Kenny Johnston 2012-07-11 16:30:05 -07:00
parent a4ab3b066c
commit 33c1aec7e0

View file

@ -284,7 +284,7 @@ module Fog
"s3-#{options[:region]}.amazonaws.com"
end
@path = options[:path] || '/'
@persistent = options.fetch(:persistent, true)
@persistent = options.fetch(:persistent, false)
@port = options[:port] || 443
@scheme = options[:scheme] || 'https'
end