You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I just tried running the dream tutorials on ocaml.4.12+domains and it segfaulted after a minute or so. I can reproduce it with the first example using siege (though when it originally happened it was idle).
Here's the test-case as a Dockerfile:
FROM ocaml/opam:debian-11-ocaml-4.12-domains
RUN sudo apt-get update && sudo apt-get install -y --no-install-recommends siege
RUN git clone https://github.com/aantron/dream.git --recursive
WORKDIR dream
RUN opam-2.1 install --deps-only -t .
RUN opam-2.1 exec -- dune build ./example/1-hello/hello.exe
RUN (./_build/default/example/1-hello/hello.exe || echo CRASH &); sleep 1; siege http://127.0.0.1:8080/ 2> /dev/null
I get a crash within a second or so:
$ docker build .
[...]
Step 7/7 : RUN (./_build/default/example/1-hello/hello.exe || echo CRASH &); sleep 1; siege http://127.0.0.1:8080/ 2> /dev/nl
---> Running in efdb276b969f
10.01.22 13:57:03.735 Running at http://localhost:8080
10.01.22 13:57:03.735 Type Ctrl+C to stop
New configuration template added to /home/opam/.siege
Run siege -C to view the current settings in that file
Segmentation fault (core dumped)
CRASH
The crash is in caml_darken. Is Dream expected to work on multicore?
The text was updated successfully, but these errors were encountered:
Hi, I just tried running the dream tutorials on ocaml.4.12+domains and it segfaulted after a minute or so. I can reproduce it with the first example using
siege
(though when it originally happened it was idle).Here's the test-case as a Dockerfile:
I get a crash within a second or so:
The crash is in
caml_darken
. Is Dream expected to work on multicore?The text was updated successfully, but these errors were encountered: