Improve logic related to error handling on SiteExists call

No need to check if SiteExists if the config is not managed or the name
does not even qualify.
This commit is contained in:
Matthew Holt 2016-08-23 14:51:07 -06:00
parent 15d25f1ca4
commit 628920e20e
No known key found for this signature in database
GPG Key ID: 0D97CC73664F4D03

View File

@ -133,6 +133,10 @@ func (c *Config) ObtainCert(allowPrompts bool) error {
}
func (c *Config) obtainCertName(name string, allowPrompts bool) error {
if !c.Managed || !HostQualifies(name) {
return nil
}
storage, err := c.StorageFor(c.CAUrl)
if err != nil {
return err
@ -143,7 +147,7 @@ func (c *Config) obtainCertName(name string, allowPrompts bool) error {
return err
}
if !c.Managed || !HostQualifies(name) || siteExists {
if siteExists {
return nil
}