Commit 9a600f62 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #37235 from bowei/flake-37114

Automatic merge from submit-queue Test flake: ignore dig failure; wait until timeout The intent of this test was to continue trying until the timeout has been reached. The extra assertion makes the test fail early when it should not. https://github.com/kubernetes/kubernetes/issues/37144 fix 37114
parents 4dd0320d 5b2c0075
......@@ -200,10 +200,8 @@ func (t *dnsConfigMapTest) runDig(dnsName string) []string {
CaptureStderr: true,
})
Expect(err).NotTo(HaveOccurred())
framework.Logf("Running dig: %v, stdout: %q, stderr: %q",
cmd, stdout, stderr)
framework.Logf("Running dig: %v, stdout: %q, stderr: %q, err: %v",
cmd, stdout, stderr, err)
if stdout == "" {
return []string{}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment