From 4d76e0101cb6b1562f56c4e87bea5b0d801fefcc Mon Sep 17 00:00:00 2001 From: Philipp Winter Date: Thu, 20 Aug 2020 14:47:07 -0700 Subject: [PATCH] Increase request buffer size. We currently have ~1,700 bridges, so a buffer size of 1,000 isn't going to cut it if we ask bridgestrap to test our entire pool of bridges at once. --- handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers.go b/handlers.go index d9bffdf..ff5d320 100644 --- a/handlers.go +++ b/handlers.go @@ -15,7 +15,7 @@ import ( var IndexPage string var SuccessPage string var FailurePage string -var reqChan = make(chan *TestRequest, 1000) +var reqChan = make(chan *TestRequest, 10000) // TestResult represents the result of a test, sent back to the client as JSON // object. -- GitLab