Merge pull request #9714 from fgrzadkowski/debug_scalability

Fix printing deleted pods from RC during e2e tests
This commit is contained in:
Marek Grabowski
2015-06-15 13:29:59 +02:00

View File

@@ -773,7 +773,7 @@ func (p PodDiff) Print(ignorePhases util.StringSet) {
continue continue
} }
if info.phase == nonExist { 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 continue
} }
phaseChange, hostChange := false, false phaseChange, hostChange := false, false