Commit 01f0eac2 authored by Marek Grabowski's avatar Marek Grabowski

Merge pull request #9714 from fgrzadkowski/debug_scalability

Fix printing deleted pods from RC during e2e tests
parents 5e5c1d10 4ffb4b28
......@@ -773,7 +773,7 @@ func (p PodDiff) Print(ignorePhases util.StringSet) {
continue
}
if info.phase == nonExist {
Logf("Pod %v was deleted, had phase %v and host %v", name, info.phase, info.hostname)
Logf("Pod %v was deleted, had phase %v and host %v", name, info.oldPhase, info.oldHostname)
continue
}
phaseChange, hostChange := false, false
......
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