on error return empty defaultKeyPair{} rather than nil

This commit is contained in:
chris marget 2019-02-06 14:02:26 -05:00
parent 484aa4768f
commit be01ca70f4
1 changed files with 1 additions and 1 deletions

View File

@ -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