Skip to content

Commit 8db141b

Browse files
authored
🌱 Avoid warning: Waited for due to client-side throttling, (#1652)
> I0829 08:31:00.251753 17515 request.go:697] > Waited for 1.993332996s due to client-side > throttling, not priority and fairness, request: > GET:https://127.0.0.1:39499/apis/cluster.x-k8s.io/v1beta1/machines This warnings is repeated again and again in the output of e2e tests. We use current api-servers, no need for client-side throttling.
1 parent fe1e6be commit 8db141b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/e2e/e2e_suite_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ func logStatus(ctx context.Context, restConfig *restclient.Config, c client.Clie
290290
}
291291

292292
func logConditions(ctx context.Context, restConfig *restclient.Config) error {
293+
restConfig.QPS = -1 // Since Kubernetes 1.29 "API Priority and Fairness" handles that.
293294
counter, err := checkconditions.RunAndGetCounter(ctx, restConfig, checkconditions.Arguments{})
294295
if err != nil {
295296
return fmt.Errorf("failed to get check conditions: %w", err)

0 commit comments

Comments
 (0)