Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Newdigate <andrew@gitlab.com>2017-10-02 18:59:29 +0300
committerAndrew Newdigate <andrew@gitlab.com>2017-10-02 18:59:29 +0300
commit456bdaf1e44ecdf0ca5852d6a85e1d7c07f2a880 (patch)
tree9975ff737d0fa07193df51250dff31c92c837349
parentf47478b034b9137618eecd98ec6ac740d1f1fd71 (diff)
Update concurrency_limiter_test.go
-rw-r--r--internal/middleware/limithandler/concurrency_limiter_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/middleware/limithandler/concurrency_limiter_test.go b/internal/middleware/limithandler/concurrency_limiter_test.go
index f045c2c31..be7acb8f4 100644
--- a/internal/middleware/limithandler/concurrency_limiter_test.go
+++ b/internal/middleware/limithandler/concurrency_limiter_test.go
@@ -121,8 +121,8 @@ func TestLimiter(t *testing.T) {
iterations: 40,
buckets: 50,
// Intentionally leaving the max low because CI runners
- // may struggle to do 80 things in parallel
- wantMaxRange: []int{80, 102},
+ // may struggle to do 100 things in parallel
+ wantMaxRange: []int{50, 102},
wantMonitorCalls: true,
},
}