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

Update API path for deleting SSH keys

The current path is incorrect (missing a '/'), resulting in a 404 whenever you try to destroy an SSH key on DigitalOcean V2.
This commit is contained in:
Michael Borohovski 2015-11-30 23:07:18 -08:00
parent b07005e808
commit 7f4e488c50

View file

@ -10,7 +10,7 @@ module Fog
'Content-Type' => "application/json; charset=UTF-8",
},
:method => 'DELETE',
:path => "/v2/account/keys#{id}",
:path => "/v2/account/keys/#{id}",
)
end
end