Commit 234f9518 authored by Brendan Burns's avatar Brendan Burns

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

parent 5de4c497
......@@ -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)
}
}
......
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