mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[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 ''
This commit is contained in:
parent
bf4c376256
commit
fae2b324af
1 changed files with 2 additions and 2 deletions
|
@ -12,11 +12,11 @@ module Fog
|
|||
# @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(
|
||||
request({
|
||||
:expects => [204],
|
||||
:method => 'DELETE',
|
||||
:path => "servers/#{server_id}"
|
||||
)
|
||||
}, false)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue