1
0
Fork 0
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:
Dylan Egan 2012-05-28 15:59:34 +02:00
parent 6a2c9dafe7
commit 4bb008da1f

View file

@ -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)