We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 860618c commit bc9394eCopy full SHA for bc9394e
gateway/certbot.go
@@ -216,8 +216,6 @@ func (cb *CertBot) executeRenewCertificates() error {
216
}
217
218
if err := cmd.Run(); err != nil {
219
- log.WithError(err).Error("failed to renew SSL certificate")
220
-
221
return err
222
223
@@ -236,7 +234,9 @@ func (cb *CertBot) renewCertificates() {
236
234
for range ticker.C {
237
235
log.Info("checking if SSL certificate needs to be renewed")
238
if err := cb.executeRenewCertificates(); err != nil {
239
- log.Fatal("failed to renew SSL certificate")
+ log.WithError(err).Error("failed to renew SSL certificate")
+
+ continue
240
241
242
log.Info("ssl certificate successfully renewed")
0 commit comments