From 34df17169335bb8e83c7aff7006b157f9e5a3d52 Mon Sep 17 00:00:00 2001 From: Dawn Chen Date: Wed, 18 Feb 2015 13:20:42 -0800 Subject: [PATCH] Debugging message for debugging #4500 --- cmd/integration/integration.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index 5591b5e7de3..0b27821130a 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -239,7 +239,9 @@ func podsOnMinions(c *client.Client, pods api.PodList) wait.ConditionFunc { return func() (bool, error) { for i := range pods.Items { host, id, namespace := pods.Items[i].Status.Host, pods.Items[i].Name, pods.Items[i].Namespace + glog.Infof("Check whether pod %s.%s exists on node %q", id, namespace, host) if len(host) == 0 { + glog.Infof("Pod %s.%s is not bound to a host yet", id, namespace) return false, nil } if _, err := podInfo.GetPodStatus(host, namespace, id); err != nil {