1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/compute_v2/delete_server.rb
David Wittman fae2b324af [rackspace] Don't parse JSON in delete_server
The Rackspace API replies with an empty response to delete_server
requests, but includes a header enforcing the application/json
content-type.

This commit disables JSON parsing on delete_server requests,
which prevents the appearance of these warnings:

[WARNING] Error Parsing response json - 781: unexpected token at ''
2013-09-20 22:29:28 -05:00

36 lines
1.2 KiB
Ruby

module Fog
module Compute
class RackspaceV2
class Real
# Deletes a specified server instance from the system.
# @param [String] server_id the id of the server to delete
# @return [Excon::Response] response
# @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404
# @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400
# @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500
# @raise [Fog::Compute::RackspaceV2::ServiceError]
# @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/Delete_Server-d1e2883.html
def delete_server(server_id)
request({
:expects => [204],
:method => 'DELETE',
:path => "servers/#{server_id}"
}, false)
end
end
class Mock
def delete_server(server_id)
self.data[:servers].delete(server_id)
volumes = self.data[:volumes].values
volumes.each do |v|
v["attachments"].delete_if { |a| a["serverId"] == server_id }
v["status"] = "available" if v["attachments"].empty?
end
response(:status => 204)
end
end
end
end
end