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:
parent
0cd44b71db
commit
b881539288
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ module Fog
|
||||||
@region = options[:region]
|
@region = options[:region]
|
||||||
@host = options[:host] || "kinesis.#{options[:region]}.amazonaws.com"
|
@host = options[:host] || "kinesis.#{options[:region]}.amazonaws.com"
|
||||||
@path = options[:path] || '/'
|
@path = options[:path] || '/'
|
||||||
@persistent = options[:persistent] || false
|
@persistent = options[:persistent] || true
|
||||||
@port = options[:port] || 443
|
@port = options[:port] || 443
|
||||||
@scheme = options[:scheme] || 'https'
|
@scheme = options[:scheme] || 'https'
|
||||||
@connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
|
@connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
|
||||||
|
|
Loading…
Add table
Reference in a new issue