diff --git a/lib/fog/storm_on_demand/compute.rb b/lib/fog/storm_on_demand/compute.rb index afa5357cc..e72f0630c 100644 --- a/lib/fog/storm_on_demand/compute.rb +++ b/lib/fog/storm_on_demand/compute.rb @@ -5,8 +5,7 @@ module Fog module Compute class StormOnDemand < Fog::Service - API_URL = 'https://api.stormondemand.com' - API_VERSION = 'v1' + API_URL = 'https://api.stormondemand.com/v1' requires :storm_on_demand_username, :storm_on_demand_password recognizes :storm_on_demand_auth_url @@ -110,7 +109,7 @@ module Fog 'Authorization' => 'Basic ' << Base64.encode64("#{@storm_on_demand_username}:#{@storm_on_demand_password}").chomp }.merge!(params[:headers] || {}), :host => @host, - :path => "#{@path}/#{API_VERSION}/#{params[:path]}", + :path => "#{@path}/#{params[:path]}", :expects => 200, :method => :post }))