forked from TrueCloudLab/lego
Do not exit on domain failure, only log it.
This commit is contained in:
parent
959cf005c7
commit
69bbae6026
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ func run(c *cli.Context) {
|
|||
certs, failures := client.ObtainCertificates(c.GlobalStringSlice("domains"), true)
|
||||
if len(failures) > 0 {
|
||||
for k, v := range failures {
|
||||
logger().Fatalf("[%s] Could not obtain certificates\n\t%v", k, v)
|
||||
logger().Printf("[%s] Could not obtain certificates\n\t%v", k, v)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue