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

Merge pull request #1919 from hectcastro/hc-riakcs-usage-connection-options

Passing the connection_options parameter to underlying Fog::Storage in Fog::RiakCS::Usage
This commit is contained in:
Christopher Meiklejohn 2013-07-15 07:30:37 -07:00
commit e6ce26742f
2 changed files with 4 additions and 2 deletions

View file

@ -64,7 +64,8 @@ module Fog
:aws_secret_access_key => @riakcs_secret_access_key,
:host => @host,
:port => @port,
:scheme => @scheme
:scheme => @scheme,
:connection_options => @connection_options
)
end

View file

@ -56,7 +56,8 @@ module Fog
:aws_secret_access_key => @riakcs_secret_access_key,
:host => @host,
:port => @port,
:scheme => @scheme
:scheme => @scheme,
:connection_options => @connection_options
)
end
end