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:
parent
b07005e808
commit
7f4e488c50
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue