Ignore client-side throttling in kubectl stderr
Signed-off-by: Monis Khan <mok@vmware.com>
This commit is contained in:
parent
521adffb17
commit
73716f1b91
@ -65,7 +65,10 @@ func requireCleanKubectlStderr(t *testing.T, stderr string) {
|
|||||||
if strings.Contains(line, "Throttling request took") {
|
if strings.Contains(line, "Throttling request took") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
require.Failf(t, "unexpected kubectl stderr", "kubectl produced unexpected stderr output:\n%s\n\n", stderr)
|
if strings.Contains(line, "due to client-side throttling, not priority and fairness") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
require.Failf(t, "unexpected kubectl stderr", "kubectl produced unexpected stderr:\n%s\n\n", stderr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user