mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 04:33:26 +00:00
Merge pull request #66760 from tanshanshan/e2e-error
Automatic merge from submit-queue (batch tested with PRs 66686, 66760). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Error in return value should be tested **What this PR does / why we need it**: Error in return value should be tested **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
commit
a934499cf9
@ -608,6 +608,7 @@ var _ = SIGDescribe("Density", func() {
|
|||||||
timeout := time.Duration(totalPods/podThroughput)*time.Second + 3*time.Minute
|
timeout := time.Duration(totalPods/podThroughput)*time.Second + 3*time.Minute
|
||||||
// createClients is defined in load.go
|
// createClients is defined in load.go
|
||||||
clients, internalClients, scalesClients, err := createClients(numberOfCollections)
|
clients, internalClients, scalesClients, err := createClients(numberOfCollections)
|
||||||
|
framework.ExpectNoError(err)
|
||||||
for i := 0; i < numberOfCollections; i++ {
|
for i := 0; i < numberOfCollections; i++ {
|
||||||
nsName := namespaces[i].Name
|
nsName := namespaces[i].Name
|
||||||
secretNames := []string{}
|
secretNames := []string{}
|
||||||
@ -671,7 +672,7 @@ var _ = SIGDescribe("Density", func() {
|
|||||||
|
|
||||||
// Single client is running out of http2 connections in delete phase, hence we need more.
|
// Single client is running out of http2 connections in delete phase, hence we need more.
|
||||||
clients, internalClients, scalesClients, err = createClients(2)
|
clients, internalClients, scalesClients, err = createClients(2)
|
||||||
|
framework.ExpectNoError(err)
|
||||||
dConfig := DensityTestConfig{
|
dConfig := DensityTestConfig{
|
||||||
ClientSets: clients,
|
ClientSets: clients,
|
||||||
InternalClientsets: internalClients,
|
InternalClientsets: internalClients,
|
||||||
|
Loading…
Reference in New Issue
Block a user