Skip to content

Commit

Permalink
Ignore SIGPIPE in the Merlin server process (#1746)
Browse files Browse the repository at this point in the history
from liam923/ignore-sigpipe
  • Loading branch information
voodoos authored Apr 19, 2024
2 parents bfdf9f0 + 4b4d637 commit 23e9de3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ merlin NEXT_VERSION
- destruct: Removal of residual patterns (#1737, fixes #1560)
- Do not erase fields' names when destructing punned record fields (#1734,
fixes #1661)
- Ignore SIGPIPE in the Merlin server process (#1746)

merlin 4.14
===========
Expand Down
2 changes: 2 additions & 0 deletions src/frontend/ocamlmerlin/ocamlmerlin_server.ml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ module Server = struct
| None ->
Logger.log ~section:"server" ~title:"cannot setup listener" ""
| Some server ->
(* If the client closes its connection, don't let it kill us with a SIGPIPE. *)
if Sys.unix then Sys.set_signal Sys.sigpipe Sys.Signal_ignore;
loop (File_id.get Sys.executable_name) server;
Os_ipc.server_close server
end
Expand Down

0 comments on commit 23e9de3

Please sign in to comment.