on error return empty defaultKeyPair{} rather than nil

pull/7287/head
chris marget 7 years ago
parent 484aa4768f
commit be01ca70f4

@ -139,7 +139,7 @@ func (o *defaultKeyPairBuilder) Build() (KeyPair, error) {
return o.newEcdsaKeyPair()
}
return nil, fmt.Errorf("Unsupported keypair type: %s", o.kind.String())
return defaultKeyPair{}, fmt.Errorf("Unsupported keypair type: %s", o.kind.String())
}
// preallocatedKeyPair returns an SSH key pair based on user

Loading…
Cancel
Save