Commit ff4c23d8 authored by Brendan Burns's avatar Brendan Burns

Merge pull request #4208 from brendandburns/e2e2

Revert filtering unknown pods, as I believe that it is causing e2e flakes.
parents c5fcd9d5 234f9518
......@@ -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