Revert filtering unknown pods, as I believe that it is causing e2e flakes.

This commit is contained in:
Brendan Burns 2015-02-05 20:57:01 -08:00
parent 5de4c49792
commit 234f951867

View File

@ -179,8 +179,7 @@ func FilterActivePods(pods []api.Pod) []api.Pod {
var result []api.Pod
for _, value := range pods {
if api.PodSucceeded != value.Status.Phase &&
api.PodFailed != value.Status.Phase &&
api.PodUnknown != value.Status.Phase {
api.PodFailed != value.Status.Phase {
result = append(result, value)
}
}