We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88be05 commit ebc0905Copy full SHA for ebc0905
ocaml-lsp-server/src/dune.ml
@@ -92,7 +92,8 @@ end = struct
92
let+ (_ : Unix.process_status) = Scheduler.wait_for_process t.pid in
93
Scheduler.stop t.in_thread;
94
Scheduler.stop t.out_thread;
95
- ()
+ close_out_noerr t.out_chan;
96
+ close_in_noerr t.in_chan
97
end
98
99
module Client =
ocaml-lsp-server/src/progress.ml
@@ -1,8 +1,8 @@
1
open Import
2
3
type enabled =
4
- (* TODO this needs to be mutexed *)
5
- { mutable token : ProgressToken.t option
+ { (* TODO this needs to be mutexed *)
+ mutable token : ProgressToken.t option
6
; mutable build_counter : int
7
; report_progress :
8
Server_notification.Progress.t ProgressParams.t -> unit Fiber.t
0 commit comments