lib/fog/storm_on_demand/shared.rb in fog-1.20.0 vs lib/fog/storm_on_demand/shared.rb in fog-1.21.0
- old
+ new
@@ -2,21 +2,21 @@
module StormOnDemand
module RealShared
API_URL = 'https://api.stormondemand.com'
API_VERSION = 'v1'
-
+
def initialize(options={})
uri = URI.parse(options[:storm_on_demand_auth_url] ||= API_URL)
@connection_options = options[:connection_options] || {}
@host = uri.host
@path = uri.path
@persistent = options[:persistent] || false
@port = uri.port
@scheme = uri.scheme
@storm_on_demand_username = options[:storm_on_demand_username]
@storm_on_demand_password = options[:storm_on_demand_password]
- @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
+ @connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
end
def reload
@connection.reset
end