Commit 4ffb4b28 authored by Filip Grzadkowski's avatar Filip Grzadkowski

Fix printing deleted pods from RC during e2e tests

parent cd329930
......@@ -760,7 +760,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