mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. ✌️
This commit is contained in:
parent
6a2c9dafe7
commit
4bb008da1f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ module Fog
|
|||
@host = "api2.dynect.net"
|
||||
@port = options[:port] || 443
|
||||
@path = options[:path] || '/REST'
|
||||
@persistent = options[:persistent] || true
|
||||
@persistent = options[:persistent] || false
|
||||
@scheme = options[:scheme] || 'https'
|
||||
@version = options[:version] || '2.3.1'
|
||||
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
|
||||
|
|
Loading…
Add table
Reference in a new issue