Skip to content

Commit

Permalink
test: Fix issue with unmanaged pod deletions hitting the timeout
Browse files Browse the repository at this point in the history
Fixes: #11653

Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com>
  • Loading branch information
errordeveloper authored and nebril committed May 27, 2020
1 parent 8bd3cea commit 9ba07e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/kubectl.go
Expand Up @@ -1828,7 +1828,7 @@ iteratePods:
if err != nil || ep.Identity == nil || ep.Identity.ID == 0 {
ginkgoext.By("Restarting unmanaged pod %s/%s", namespace, pod.Name)
cmd = KubectlCmd + " -n " + namespace + " delete pod " + pod.Name
res = kub.ExecShort(cmd)
res = kub.Exec(cmd)
if !res.WasSuccessful() {
ginkgoext.Failf("Unable to restart unmanaged pod with '%s': %s", cmd, res.OutputPrettyPrint())
}
Expand Down

0 comments on commit 9ba07e3

Please sign in to comment.