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
main.exe: ocsigen:main: Cannot create the command pipe $HOME/scratch/_opam/lib/ocsigenserver/var/run/ocsigenserver_command. I will continue without.: Unix.Unix_error(Unix.ENOENT, "mkfifo", "$HOME/scratch/_opam/lib/ocsigenserver/var/run/ocsigenserver_command")
When I instead specify a file path (e.g., in /tmp), it is created as expected.
I'm not sure what the intended behavior is here, and whether it should just not try to create a fd for the command pipe if none is specified, or if it should rather create one in a different location (or create this one different). But logging a unix error doesn't seem like the right behavior.
The text was updated successfully, but these errors were encountered:
Hi! I'm migrating a project to version 6. So var most things are working great :) Thanks!
Given the following minimal program in
main.ml
on startup via
dune exec main
I seeWhen I instead specify a file path (e.g., in
/tmp
), it is created as expected.I'm not sure what the intended behavior is here, and whether it should just not try to create a fd for the command pipe if none is specified, or if it should rather create one in a different location (or create this one different). But logging a unix error doesn't seem like the right behavior.
The text was updated successfully, but these errors were encountered: