From 5392281c5d3f38ab3b3c8d5b934bcdc95d2cfcfd Mon Sep 17 00:00:00 2001 From: Igor Sutton Date: Tue, 17 May 2022 10:21:56 +0200 Subject: [PATCH] refactor: change burst limit default value to 100 per review instructions Signed-off-by: Igor Sutton --- pkg/cli/environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/environment.go b/pkg/cli/environment.go index b06081ae7..b17172db4 100644 --- a/pkg/cli/environment.go +++ b/pkg/cli/environment.go @@ -39,7 +39,7 @@ import ( const defaultMaxHistory = 10 // defaultBurstLimit sets the default client-side throttling limit -const defaultBurstLimit = 250 +const defaultBurstLimit = 100 // EnvSettings describes all of the environment settings. type EnvSettings struct {