Commit b3c7aa8a authored by James DeFelice's avatar James DeFelice

only log about no network settings for running pods

parent fd7b4d46
......@@ -235,7 +235,7 @@ func (rs *REST) fillPodInfo(pod *api.Pod) {
if ok {
if netContainerInfo.PodIP != "" {
pod.Status.PodIP = netContainerInfo.PodIP
} else {
} else if netContainerInfo.State.Running != nil {
glog.Warningf("No network settings: %#v", netContainerInfo)
}
} else {
......
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