Skip to content

Commit

Permalink
Increase the job pool limit to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate authored Dec 17, 2021
1 parent 471e789 commit f8cf235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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 () ->
Expand Down

0 comments on commit f8cf235

Please sign in to comment.