1
0
Fork 0

Fix panic in k8s loadIngresses

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2016-12-08 13:32:52 +01:00
parent be362f0d9f
commit 5a67d0ac84
No known key found for this signature in database
GPG key ID: D808B4C167352E59
5 changed files with 29 additions and 5 deletions

View file

@ -533,7 +533,7 @@ func (a *ACME) LoadCertificateForDomains(domains []string) {
}
ebo := backoff.NewExponentialBackOff()
ebo.MaxElapsedTime = 30 * time.Second
err := backoff.RetryNotify(operation, ebo, notify)
err := backoff.RetryNotify(safe.OperationWithRecover(operation), ebo, notify)
if err != nil {
log.Errorf("Error getting ACME client: %v", err)
return