From e827708635bbec030814672c68a6d9ce4db454f6 Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Tue, 17 Nov 2020 18:41:08 +0000 Subject: [PATCH] APF e2e tests: rename request drown-out priority client names Signed-off-by: Adhityaa Chandrasekar --- test/e2e/apimachinery/flowcontrol.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/e2e/apimachinery/flowcontrol.go b/test/e2e/apimachinery/flowcontrol.go index f9c3527057b..b84dc4ba64f 100644 --- a/test/e2e/apimachinery/flowcontrol.go +++ b/test/e2e/apimachinery/flowcontrol.go @@ -82,13 +82,13 @@ var _ = SIGDescribe("API priority and fairness", func() { completedRequests int32 } clients := []client{ - // "elephant" refers to a client that creates requests at a much higher + // "highqps" refers to a client that creates requests at a much higher // QPS than its counter-part and well above its concurrency share limit. - // In contrast, the mouse stays under its concurrency shares. - // Additionally, the "elephant" client also has a higher matching + // In contrast, "lowqps" stays under its concurrency shares. + // Additionally, the "highqps" client also has a higher matching // precedence for its flow schema. - {username: "elephant", qps: 100.0, concurrencyMultiplier: 2.0, matchingPrecedence: 999}, - {username: "mouse", qps: 5.0, concurrencyMultiplier: 0.5, matchingPrecedence: 1000}, + {username: "highqps", qps: 100.0, concurrencyMultiplier: 2.0, matchingPrecedence: 999}, + {username: "lowqps", qps: 5.0, concurrencyMultiplier: 0.5, matchingPrecedence: 1000}, } ginkgo.By("creating test priority levels and flow schemas")