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

Persistent by default

This commit is contained in:
Michael Hale 2015-07-02 17:08:30 -04:00
parent 0cd44b71db
commit b881539288

View file

@ -45,7 +45,7 @@ module Fog
@region = options[:region]
@host = options[:host] || "kinesis.#{options[:region]}.amazonaws.com"
@path = options[:path] || '/'
@persistent = options[:persistent] || false
@persistent = options[:persistent] || true
@port = options[:port] || 443
@scheme = options[:scheme] || 'https'
@connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)