From 4ffb4b2895860fd3a0ae45af766bfbdbbd8d626d Mon Sep 17 00:00:00 2001 From: Filip Grzadkowski Date: Fri, 12 Jun 2015 16:15:29 +0200 Subject: [PATCH] Fix printing deleted pods from RC during e2e tests --- test/e2e/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/util.go b/test/e2e/util.go index 061f4e63fa5..fc02d772b9d 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -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