mirror of https://github.com/apache/cloudstack.git
bug 11889: use keypair instead of sshkeypair in API response
status 11889: resolved fixed
This commit is contained in:
parent
f40dcbd82e
commit
084f861318
|
|
@ -71,7 +71,7 @@ public class ListSSHKeyPairsCmd extends BaseListCmd {
|
|||
List<SSHKeyPairResponse> responses = new ArrayList<SSHKeyPairResponse>();
|
||||
for (SSHKeyPair result : resultList) {
|
||||
SSHKeyPairResponse r = new SSHKeyPairResponse(result.getName(), result.getFingerprint());
|
||||
r.setObjectName("sshkeypair");
|
||||
r.setObjectName("keypair");
|
||||
responses.add(r);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue