Merge pull request #91019 from aojea/rejected

improve error logging on e2e pod create function
This commit is contained in:
Kubernetes Prow Robot 2020-05-12 15:50:26 -07:00 committed by GitHub
commit 6acceaeb2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -452,7 +452,7 @@ func CreateExecPodOrFail(client clientset.Interface, ns, generateName string, tw
}
return retrievedPod.Status.Phase == v1.PodRunning, nil
})
expectNoError(err)
expectNoError(err, "failed to create new exec pod in namespace: %s", ns)
return execPod
}