[
https://issues.apache.org/jira/browse/LIBCLOUD-492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Oleg Suharev updated LIBCLOUD-492:
----------------------------------
Attachment: LIBCLOUD-492.patch
[~kami] please accept patch (it in git format).
I fix this ticket and backward compatibility problem in ex_delete_keypair and
in tests.
All unit tests passed
> In ec2 driver delete_key_pair accept key name, not KeyPair object
> -----------------------------------------------------------------
>
> Key: LIBCLOUD-492
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-492
> Project: Libcloud
> Issue Type: Bug
> Reporter: Oleg Suharev
> Attachments: LIBCLOUD-492.patch
>
>
> In EC2 driver delete_key_pair work only if send key_pair as string, but in
> openstack and cloudstack driver this method wait KeyPair object
> {code}
> def delete_key_pair(self, key_pair):
> params = {
> 'Action': 'DeleteKeyPair',
> 'KeyName': key_pair
> }
> result = self.connection.request(self.path, params=params).object
> element = findtext(element=result, xpath='return',
> namespace=NAMESPACE)
> return element == 'true'
> {code}
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)