Fix printing deleted pods from RC during e2e tests

pull/6/head
Filip Grzadkowski 2015-06-12 16:15:29 +02:00
parent cd3299307d
commit 4ffb4b2895
1 changed files with 1 additions and 1 deletions

View File

@ -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