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

Merge pull request #1035 from kjohnston/aws-storage-persistence

[aws|storage] Default to false for persistent connections.
This commit is contained in:
Wesley Beary 2012-07-12 07:56:48 -07:00
commit 0bd32e47ad

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