Improve config retrieval messages

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
pull/3755/head
Brad Davidson 3 years ago committed by Brad Davidson
parent 869b98bc4c
commit 5ab3590d9b

@ -49,7 +49,7 @@ RETRY:
for {
agentConfig, err := get(ctx, &agent, proxy)
if err != nil {
logrus.Infof("Failed to retrieve agent configuration: %v", err)
logrus.Infof("Waiting to retrieve agent configuration; server is not ready: %v", err)
for range ticker.C {
continue RETRY
}
@ -69,7 +69,7 @@ RETRY:
for {
disabled, err := getKubeProxyDisabled(ctx, node, proxy)
if err != nil {
logrus.Infof("Failed to retrieve kube-proxy configuration: %v", err)
logrus.Infof("Waiting to retrieve kube-proxy configuration; server is not ready: %v", err)
for range ticker.C {
continue RETRY
}

Loading…
Cancel
Save