Skip to content

Commit

Permalink
Fix 405s
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate committed Mar 5, 2021
1 parent 0176889 commit 9c78af3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/analyse.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
open Lwt.Infix
open Current.Syntax

let pool = Current.Pool.create ~label:"analyse" 20
let pool = Current.Pool.create ~label:"analyse" 4

let ( >>!= ) = Lwt_result.bind
let list_is_empty = function [] -> true | _::_ -> false
Expand Down
2 changes: 1 addition & 1 deletion lib/lint.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
open Lwt.Infix
open Current.Syntax

let pool = Current.Pool.create ~label:"lint" 20
let pool = Current.Pool.create ~label:"lint" 4

let ( // ) = Filename.concat
let ( >>/= ) x f = x >>= fun x -> f (Result.get_ok x)
Expand Down

0 comments on commit 9c78af3

Please sign in to comment.