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:
parent
a4ab3b066c
commit
33c1aec7e0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue