From f8cf23519aa438d0513d8bb10fee46ead4994497 Mon Sep 17 00:00:00 2001 From: Kate Date: Fri, 17 Dec 2021 17:56:07 +0000 Subject: [PATCH] Increase the job pool limit to 1000 --- lib/build.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build.ml b/lib/build.ml index a6d5cd72..ea18b38b 100644 --- a/lib/build.ml +++ b/lib/build.ml @@ -120,7 +120,7 @@ module Op = struct module Outcome = Current.String - let lwt_pool = Lwt_pool.create 125 (fun () -> Lwt.return_unit) + let lwt_pool = Lwt_pool.create 1000 (fun () -> Lwt.return_unit) let run { connection; timeout} job { Key.pool; commit; variant; ty } { Value.base; master } = Lwt_pool.use lwt_pool @@ fun () ->