Vesa Karvonen
Vesa Karvonen
WIP — not even close to being complete.
#271 introduced a workaround for [Uri not being thread safe](https://github.com/mirage/ocaml-uri/issues/178). As [Angstrom fixed the issue](https://github.com/inhabitedtype/angstrom/pull/229) it should now be possible to work around this by explicitly depending on a version...
Tests, such as [this example](https://github.com/ocaml-multicore/picos/blob/eb7220520d5a51707b2510094b5070a629734c11/lib/picos_io/picos_io.mli#L697-L759), using `Unix.socketpair` occasionally fail on Windows: ```diff --- a/_build/default/lib/picos_io/picos_io.mli +++ b/_build/default/lib/picos_io/.mdx/picos_io.mli.corrected @@ -753,7 +753,5 @@ end send_string "Hello, world!"; send_string "POSIX with OCaml"; end -...
On macOS [a simple Dream server](https://github.com/polytypic/dream-leak/blob/main/bin/server/server.ml), ```ocaml let () = Dream.router [ Dream.get "/" (fun _ -> Lwt.return (Dream.response ~headers:[ ("Content-Type", "text/plain") ] "On macOS I leak.\n")); ] |> Dream.logger...
We encountered the following: ``` Fatal error: exception CamlinternalLazy.Undefined Raised at CamlinternalLazy.force_gen_lazy_block in file "camlinternalLazy.ml", line 75, characters 9-24 Called from CamlinternalLazy.force_lazy_block in file "camlinternalLazy.ml" (inlined), line 78, characters 27-67...