Skip to content

Commit

Permalink
Mostly undo earlier reductions of expectedCompletedPercentage
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSpreitzer committed Nov 30, 2020
1 parent 3b443e5 commit e7b0f58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/apimachinery/flowcontrol.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ var _ = SIGDescribe("API priority and fairness", func() {
// In contrast, "lowqps" stays under its concurrency shares.
// Additionally, the "highqps" client also has a higher matching
// precedence for its flow schema.
{username: highQPSClientName, qps: 85, concurrencyMultiplier: 2.0, matchingPrecedence: 999, expectedCompletedPercentage: 0.75},
{username: lowQPSClientName, qps: 4, concurrencyMultiplier: 0.5, matchingPrecedence: 1000, expectedCompletedPercentage: 0.75},
{username: highQPSClientName, qps: 90, concurrencyMultiplier: 2.0, matchingPrecedence: 999, expectedCompletedPercentage: 0.90},
{username: lowQPSClientName, qps: 4, concurrencyMultiplier: 0.5, matchingPrecedence: 1000, expectedCompletedPercentage: 0.90},
}

ginkgo.By("creating test priority levels and flow schemas")
Expand Down Expand Up @@ -177,7 +177,7 @@ var _ = SIGDescribe("API priority and fairness", func() {
expectedCompletedPercentage float64
}
clients := []client{
{username: highQPSClientName, qps: 85, concurrencyMultiplier: 2.0, expectedCompletedPercentage: 0.75},
{username: highQPSClientName, qps: 90, concurrencyMultiplier: 2.0, expectedCompletedPercentage: 0.90},
{username: lowQPSClientName, qps: 4, concurrencyMultiplier: 0.5, expectedCompletedPercentage: 0.90},
}

Expand Down

0 comments on commit e7b0f58

Please sign in to comment.