traefik/vendor/github.com/xenolf/lego/acme/utils.go

34 lines
594 B
Go
Raw Normal View History

2018-05-31 07:30:04 +00:00
package acme
2018-03-26 12:12:03 +00:00
import (
"fmt"
"time"
2018-10-10 14:28:04 +00:00
"github.com/xenolf/lego/log"
2018-03-26 12:12:03 +00:00
)
// WaitFor polls the given function 'f', once every 'interval', up to 'timeout'.
func WaitFor(timeout, interval time.Duration, f func() (bool, error)) error {
2018-10-10 14:28:04 +00:00
log.Infof("Wait [timeout: %s, interval: %s]", timeout, interval)
2018-03-26 12:12:03 +00:00
var lastErr string
2018-10-10 14:28:04 +00:00
timeUp := time.After(timeout)
2018-03-26 12:12:03 +00:00
for {
select {
2018-10-10 14:28:04 +00:00
case <-timeUp:
return fmt.Errorf("time limit exceeded: last error: %s", lastErr)
2018-03-26 12:12:03 +00:00
default:
}
stop, err := f()
if stop {
return nil
}
if err != nil {
lastErr = err.Error()
}
time.Sleep(interval)
}
}