Commit 5ab3590d authored by Brad Davidson's avatar Brad Davidson Committed by Brad Davidson

Improve config retrieval messages

parent 869b98bc
...@@ -49,7 +49,7 @@ RETRY: ...@@ -49,7 +49,7 @@ RETRY:
for { for {
agentConfig, err := get(ctx, &agent, proxy) agentConfig, err := get(ctx, &agent, proxy)
if err != nil { 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 { for range ticker.C {
continue RETRY continue RETRY
} }
...@@ -69,7 +69,7 @@ RETRY: ...@@ -69,7 +69,7 @@ RETRY:
for { for {
disabled, err := getKubeProxyDisabled(ctx, node, proxy) disabled, err := getKubeProxyDisabled(ctx, node, proxy)
if err != nil { 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 { for range ticker.C {
continue RETRY continue RETRY
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment