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

Fix #3785 Missing image details for digitalocean version 2 api

This commit is contained in:
Suraj Shirvankar 2015-12-09 15:31:46 +04:00
parent f0f770881d
commit d3592c21ff
2 changed files with 3 additions and 3 deletions

View file

@ -27,6 +27,7 @@ module Fog
request :enable_ipv6
request :enable_private_networking
request :get_droplet_action
request :get_image_details
request :get_server_details
request :get_ssh_key
request :list_droplet_actions
@ -105,4 +106,4 @@ module Fog
end
end
end
end
end

View file

@ -6,7 +6,7 @@ module Fog
request(
:expects => [200],
:method => 'GET',
:path => "/v2/images/#{server_id}"
:path => "/v2/images/#{image_id}"
)
end
end
@ -33,7 +33,6 @@ module Fog
'min_disk_size' => 20
}
}
}
response
end