summaryrefslogtreecommitdiffstats
path: root/client/go/internal/vespa/document/throttler_test.go
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-05-15 01:06:48 +0200
committerGitHub <noreply@github.com>2024-05-15 01:06:48 +0200
commit63c765e1e33e02cd28f15f1a7bfad01f5f63fd43 (patch)
tree6a3486f91ca286e792e048d0c92660eb41865da6 /client/go/internal/vespa/document/throttler_test.go
parentcf84c1de017cc9e3cfd1b8859ddfbfba41a350e5 (diff)
parent34a1fe4950a6860d913a2c410f4d88109eced077 (diff)
Merge pull request #31203 from vespa-engine/jonmv/less-aggressive-smoothingv8.343.11
Less aggressive smoothing, and readjust a bit less often
Diffstat (limited to 'client/go/internal/vespa/document/throttler_test.go')
-rw-r--r--client/go/internal/vespa/document/throttler_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/internal/vespa/document/throttler_test.go b/client/go/internal/vespa/document/throttler_test.go
index b386e0d5105..eba8cbd2972 100644
--- a/client/go/internal/vespa/document/throttler_test.go
+++ b/client/go/internal/vespa/document/throttler_test.go
@@ -13,7 +13,7 @@ func TestThrottler(t *testing.T) {
if got, want := tr.TargetInflight(), int64(16); got != want {
t.Errorf("got TargetInflight() = %d, but want %d", got, want)
}
- for i := 0; i < 30; i++ {
+ for i := 0; i < 65; i++ {
tr.Sent()
tr.Success()
}